YouTube Blocker

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

Qu'est-ce que YouTube Blocker ?

YouTube Blocker est une extension Chrome développée par michael.hsiu.dev, et sa fonction principale est "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube Blocker

Téléchargez les fichiers d'extension YouTube Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom YouTube Blocker YouTube Blocker
ID kigekhiebmkaplalkokcfconloiiknga
URL Officiel 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.
Taille du Fichier 15.95 KB
Nombre d'Installations 2,000
Version Actuelle 1.6
Dernière Mise à Jour 2018-10-29
Date de Publication 2018-10-29
Évaluation 3.11/5 Total 18 Évaluations
Développeur michael.hsiu.dev
Type de Paiement in_app
Langues Prises en Charge 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"
            ]
        }
    ]
}