Doomscroll Blocker
A chrome extension to block doom scrolling and help you touch grass!
Doomscroll Blockerとは何ですか?
Doomscroll Blockerはzjjc123によって開発されたChromeの拡張機能で、その主な機能は「A chrome extension to block doom scrolling and help you touch grass!」です。
拡張機能のスクリーンショット
Doomscroll Blocker拡張機能のCRXファイルをダウンロード
Doomscroll Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Doomscroll Blocker |
ID | gneldbncofioemhoaifgeneiadeodgmh |
公式URL | https://chromewebstore.google.com/detail/doomscroll-blocker/gneldbncofioemhoaifgeneiadeodgmh |
説明 | A chrome extension to block doom scrolling and help you touch grass! |
ファイルサイズ | 16.97 KB |
インストール数 | 53 |
現在のバージョン | 0.1.1 |
最終更新日 | 2022-09-04 |
公開日 | 2022-09-01 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | zjjc123 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/Zjjc123/doomscroll-blocker |
ヘルプページのURL | https://github.com/Zjjc123/doomscroll-blocker |
対応言語 | 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" ] } ] } |