YouTube Blocker

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

Apa itu YouTube Blocker?

YouTube Blocker adalah ekstensi Chrome yang dikembangkan oleh michael.hsiu.dev, dan fitur utamanya adalah "Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube Blocker

Unduh file ekstensi YouTube Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama YouTube Blocker YouTube Blocker
ID kigekhiebmkaplalkokcfconloiiknga
URL Resmi https://chrome.google.com/webstore/detail/youtube-blocker/kigekhiebmkaplalkokcfconloiiknga
Deskripsi Notifies you if you watch too many YouTube videos! Helps you close your YouTube tabs and get back to work.
Ukuran File 15.95 KB
Jumlah Instalasi 2,000
Versi Saat Ini 1.6
Terakhir Diperbarui 2018-10-29
Tanggal Publikasi 2018-10-29
Penilaian 3.11/5 Total 18 Penilaian
Pengembang michael.hsiu.dev
Tipe Pembayaran in_app
Bahasa yang Didukung 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"
            ]
        }
    ]
}