Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

Vad är Youtube Video Blocker?

Youtube Video Blocker är en Chrome-tillägg utvecklad av bmoses1124, och dess huvudfunktion är "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Video Blocker-förlängningens CRX-fil

Ladda ner Youtube Video 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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

Grundläggande Information om Tillägg

Namn Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
Beskrivning Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Filstorlek 6.02 KB
Antal Installationer 555
Aktuell Version 0.1
Senast Uppdaterad 2020-12-23
Publiceringsdatum 2020-12-23
Betyg 1.00/5 Totalt 3 Betyg
Utvecklare bmoses1124
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}