Doomscroll Blocker
A chrome extension to block doom scrolling and help you touch grass!
What is Doomscroll Blocker?
Doomscroll Blocker is a Chrome extension developed by zjjc123, and its main feature is "A chrome extension to block doom scrolling and help you touch grass!".
Extension Screenshots
Download Doomscroll Blocker Extension CRX File
Download Doomscroll Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Use this extension to stop the endless scrolling on toxic social media website! After a certain amount of scrolling on Twitter, Reddit, Instagram, or TikTok, an alert will appear and the feed will *vanish* from existence. Go touch some grass.
Extension Basic Information
Name | Doomscroll Blocker |
ID | gneldbncofioemhoaifgeneiadeodgmh |
Official URL | https://chromewebstore.google.com/detail/doomscroll-blocker/gneldbncofioemhoaifgeneiadeodgmh |
Description | A chrome extension to block doom scrolling and help you touch grass! |
File Size | 16.97 KB |
Installation Count | 53 |
Current Version | 0.1.1 |
Last Updated | 2022-09-04 |
Publish Date | 2022-09-01 |
Rating | 5.00/5 Total 2 Ratings |
Developer | zjjc123 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Zjjc123/doomscroll-blocker |
Help Page URL | https://github.com/Zjjc123/doomscroll-blocker |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Doomscroll Blocker", "version": "0.1.1", "description": "A chrome extension to block doom scrolling and help you touch grass!", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Doomscroll Blocker", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.tiktok.com\/*", "*:\/\/*.instagram.com\/*", "*:\/\/*.reddit.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ] } ] } |