YouTube Blocker
Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Vad är YouTube Blocker?
YouTube Blocker är en Chrome-tillägg utvecklad av michael.hsiu.dev, och dess huvudfunktion är "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".
Tilläggsskärmbilder
Ladda ner YouTube Blocker-förlängningens CRX-fil
Ladda ner YouTube Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
***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.
Grundläggande Information om Tillägg
Namn | |
ID | kigekhiebmkaplalkokcfconloiiknga |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga |
Beskrivning | Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work. |
Filstorlek | 15.95 KB |
Antal Installationer | 2,000 |
Aktuell Version | 1.6 |
Senast Uppdaterad | 2018-10-29 |
Publiceringsdatum | 2018-10-29 |
Betyg | 3.11/5 Totalt 18 Betyg |
Utvecklare | michael.hsiu.dev |
Betalningssätt | in_app |
Stödda Språk | 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" ] } ] } |