YouTube Blocker

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

Was ist YouTube Blocker?

YouTube Blocker ist eine Chrome-Erweiterung, die von michael.hsiu.dev entwickelt wurde, und ihr Hauptmerkmal ist "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTube Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube Blocker YouTube Blocker
ID kigekhiebmkaplalkokcfconloiiknga
Offizielle URL https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga
Beschreibung Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Dateigröße 15.95 KB
Installationsanzahl 2,000
Aktuelle Version 1.6
Letztes Update 2018-10-29
Veröffentlichungsdatum 2018-10-29
Bewertung 3.11/5 Insgesamt 18 Bewertungen
Entwickler michael.hsiu.dev
Zahlungsart in_app
Unterstützte Sprachen 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"
            ]
        }
    ]
}