YouTube Blocker

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

Wat is YouTube Blocker?

YouTube Blocker is een Chrome-extensie ontwikkeld door michael.hsiu.dev, en de belangrijkste functie is "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie YouTube Blocker

Download YouTube Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam YouTube Blocker YouTube Blocker
ID kigekhiebmkaplalkokcfconloiiknga
Officiële URL https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga
Beschrijving Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Bestandsgrootte 15.95 KB
Aantal Installaties 2,000
Huidige Versie 1.6
Laatst Bijgewerkt 2018-10-29
Publicatiedatum 2018-10-29
Beoordeling 3.11/5 Totaal 18 Beoordelingen
Ontwikkelaar michael.hsiu.dev
Betalingswijze in_app
Ondersteunde Talen 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"
            ]
        }
    ]
}