Channel Blocker

Block irrelevant channels from the home page of youtube.

Vad är Channel Blocker?

Channel Blocker är en Chrome-tillägg utvecklad av xanderjakeq, och dess huvudfunktion är "Block irrelevant channels from the home page of youtube.".

Tilläggsskärmbilder

screenshot

Ladda ner Channel Blocker-förlängningens CRX-fil

Ladda ner Channel Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.                    

Grundläggande Information om Tillägg

Namn Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
Officiell webbadress https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
Beskrivning Block irrelevant channels from the home page of youtube.
Filstorlek 10.86 KB
Antal Installationer 1,636
Aktuell Version 1.1.1
Senast Uppdaterad 2022-06-21
Publiceringsdatum 2019-09-04
Betyg 1.80/5 Totalt 5 Betyg
Utvecklare xanderjakeq
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/thelostcreatives/youtube_channel_blocker
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Channel Blocker",
    "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]",
    "description": "Block irrelevant channels from the home page of youtube.",
    "version": "1.1.1",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "\/icon.png"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}