YouTube Blocker

Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.

Cos'è YouTube Blocker?

YouTube Blocker è un'estensione di Chrome sviluppata da michael.hsiu.dev, e la sua funzione principale è "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Blocker

Scarica i file di estensione YouTube Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ***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.                    

Informazioni di Base sull'Estensione

Nome YouTube Blocker YouTube Blocker
ID kigekhiebmkaplalkokcfconloiiknga
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga
Descrizione Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Dimensione del File 15.95 KB
Conteggio Installazioni 2,000
Versione Corrente 1.6
Ultimo Aggiornamento 2018-10-29
Data di Pubblicazione 2018-10-29
Valutazione 3.11/5 Totale 18 Valutazioni
Sviluppatore michael.hsiu.dev
Tipo di Pagamento in_app
Lingue Supportate 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"
            ]
        }
    ]
}