You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I have a bunch of watching pages and want to stop all. Is there a way for bulk execution of that, instead of opening each page and stop watching one by one?
Thanks,
Hello @Ryota Hashimoto , on top right corner --> Goto --> Profile --> Settings --> Watches --> From here you can click "Stop Watching" for any unwanted spaces or pages you like.
You can also adjust your email notification options from your email settings
https://yourinstancename/wiki/users/viewmyemailsettings.action page or goto --> your profile --> Settings --> Email --> Edit --> Turn off Autowatch
Hi Sachin thank you for your help.
I found the Watches page and will stop them one by one since I'm still afraid there are no bulk way to do them at once.
Also the autowatch info helped me while I need that feature in usual case but not applied on this case since I've made bunch of pages by add-on.
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have many watches because you imported a lot of pages it is messy to stop all the watches step by step.
I wrote a simple bookmarklet so I can stop all watches on the page with just one click and the page will reload as well.
For example, if you have 30 watch pages, you only need 30 clicks to stop them all.
This is the js-code of the bookmarklet:
javascript: void (function () {
document.getElementsByClassName('link-stop-watching').forEach(b => b.click());
location.reload();
})();
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are my hero! I had 60+ pages of these to deal with. Much gratitude from a Confluence administrator...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ask Google what a bookmarklet is and how to use it. The bookmarklet code is above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's working !! I was 26 pages of pages... All removed in 1 minute. Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't know - we are using the server version. But I think the frontend in the browser should be the same or very similar and it could work fine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This saved me a ton of time! I had well over 200 pages that I was watching and within a few clicks that was resolved.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It didn't work for me using Chrome v106 and Confluence Cloud, until I changed it to this:
javascript: void (function () { const el=document.getElementsByClassName('link-stop-watching'); [...el].forEach(b => b.click()); location.reload(); })();
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kirk Bratvold if I copy your script, the error "incorrect URL" appears. Any ideas on how to solve that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This saved me SO much time... I had 85 pages of topics to "unwatch". Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This was a life saver, the refresh action didn't work for me on Chrome v109.0.5414.75, but a click and an F5 did the trick. A few minutes later Im watch free. Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I wrote a little HTML test file and I have discovered that the page reload was faster than the execution of the simulated clicks on the «Stop Watching» buttons.
I have improved the bookmarklet code. Here is the new version that works fine on my Confluence profile. If needed you can increase the timeout value - here 2000.
Happy coding or working ;-)
javascript:(function () {
document.getElementsByClassName('link-stop-watching').forEach(b => b.click());
setTimeout(() => location.reload(), 2000);
})();
Due the code box above works not well, you have to replace the : after the leading javascript with :
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wow, this solution was amazing, I had 40 pages topics to "unwatch". Very nice, Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My original posting does not help as you are on cloud sorry.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.