YouTube Background Ad Skip Extension
Automatically Skip ads on YouTube. This is not an ad blocker
Co to jest YouTube Background Ad Skip Extension?
YouTube Background Ad Skip Extension to rozszerzenie Chrome opracowane przez Krysp_Coder, a jego główną funkcją jest „Automatically Skip ads on YouTube. This is not an ad blocker”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Background Ad Skip Extension
Pobierz pliki rozszerzeń YouTube Background Ad Skip Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Background Ad Skip Extension |
ID | ncbifbdnlggnffchafbdiefobpabajkb |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb |
Opis | Automatically Skip ads on YouTube. This is not an ad blocker |
Rozmiar pliku | 17.34 KB |
Liczba instalacji | 867 |
Aktualna Wersja | 0.1.1 |
Ostatnia Aktualizacja | 2018-06-20 |
Data Publikacji | 2018-06-20 |
Ocena | 3.33/5 Łącznie 3 Oceny |
Deweloper | Krysp_Coder |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Background Ad Skip Extension", "short_name": "YBASE", "version": "0.1.1", "description": "Automatically Skip ads on YouTube. This is not an ad blocker", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false, "matches": [ "https:\/\/www.youtube.com?*" ] }, "browser_action": { "default_icon": "images\/media-skip-forward-xxl.png" }, "icons": { "16": "images\/media-skip-forward16.png", "32": "images\/media-skip-forward32.png", "48": "images\/media-skip-forward48.png", "128": "images\/media-skip-forward128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ] } ] } |