YouTube Blocker
Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
What is YouTube Blocker?
YouTube Blocker is a Chrome extension developed by michael.hsiu.dev, and its main feature is "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".
Extension Screenshots
Download YouTube Blocker Extension CRX File
Download YouTube 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
***UPDATE: added fix to identify YouTube video pages more consistently. *** Notifies you if you watch too many YouTube videos! Tells you to close your YouTube tabs and get back to work. Choose between good ol' motivational messages and slightly stronger profane versions.
Extension Basic Information
Name | |
ID | kigekhiebmkaplalkokcfconloiiknga |
Official URL | https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga |
Description | Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work. |
File Size | 15.95 KB |
Installation Count | 2,000 |
Current Version | 1.6 |
Last Updated | 2018-10-29 |
Publish Date | 2018-10-29 |
Rating | 3.11/5 Total 18 Ratings |
Developer | michael.hsiu.dev |
Payment Type | in_app |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Blocker", "description": "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.", "version": "1.6", "permissions": [ "activeTab", "tabs", "storage" ], "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon48.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ] } |