Youtube popup blocker

People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…

Vad är Youtube popup blocker?

Youtube popup blocker är en Chrome-tillägg utvecklad av Dev Fasil, och dess huvudfunktion är "People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube popup blocker-förlängningens CRX-fil

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

                        People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen that can't be turned off. This extention removes those unwanted popups.

It can be easily turned off again by clicking on the extention button in the top right.                    

Grundläggande Information om Tillägg

Namn Youtube popup blocker Youtube popup blocker
ID calcepdepicecadfaibokdeheekbihkc
Officiell webbadress https://chromewebstore.google.com/detail/youtube-popup-blocker/calcepdepicecadfaibokdeheekbihkc
Beskrivning People often put an endscreen in a youtube video, but sometimes this ruins the entire end because of annoying popups on the screen…
Filstorlek 6.86 KB
Antal Installationer 1,403
Aktuell Version 2.0
Senast Uppdaterad 2020-09-09
Publiceringsdatum 2020-08-31
Betyg 4.43/5 Totalt 7 Betyg
Utvecklare Dev Fasil
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 popup blocker",
    "manifest_version": 2,
    "version": "2.0",
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "rb_active_16.png",
        "128": "fyt_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": []
}