SkipAds
This clicks SkipAds button, removes Ad-banners for you
Co to jest SkipAds?
SkipAds to rozszerzenie Chrome opracowane przez Edwin, a jego główną funkcją jest „This clicks SkipAds button, removes Ad-banners for you”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SkipAds
Pobierz pliki rozszerzeń SkipAds 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
This extension automatically clicks Skip Ad button on youtube videos. It also removes the Ad-banners that appear at the bottom of the video. You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.
Podstawowe informacje o rozszerzeniu
Nazwa | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
Oficjalny URL | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
Opis | This clicks SkipAds button, removes Ad-banners for you |
Rozmiar pliku | 9.99 KB |
Liczba instalacji | 159 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2022-06-27 |
Data Publikacji | 2020-06-19 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Edwin |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SkipAds", "version": "2.0", "description": "This clicks SkipAds button, removes Ad-banners for you ", "permissions": [ "activeTab", "declarativeContent", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js", "persistent": false }, "action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "skipAds.js" ] } ], "manifest_version": 3 } |