YouTube Blocker
Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Hvad er YouTube Blocker?
YouTube Blocker er en Chrome-udvidelse udviklet af michael.hsiu.dev, og dens hovedfunktion er "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".
Udvidelsesskærmbilleder
Download YouTube Blocker-udvidelses-CRX-fil
Download YouTube Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
***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æggende oplysninger om udvidelsen
Navn | |
ID | kigekhiebmkaplalkokcfconloiiknga |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga |
Beskrivelse | Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work. |
Filstørrelse | 15.95 KB |
Antal Installationer | 2,000 |
Nuværende Version | 1.6 |
Senest Opdateret | 2018-10-29 |
Udgivelsesdato | 2018-10-29 |
Bedømmelse | 3.11/5 Samlet 18 Bedømmelser |
Udvikler | michael.hsiu.dev |
Betalingsmetode | in_app |
Understøttede Sprog | 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" ] } ] } |