SkipAds
This clicks SkipAds button, removes Ad-banners for you
Vad är SkipAds?
SkipAds är en Chrome-tillägg utvecklad av Edwin, och dess huvudfunktion är "This clicks SkipAds button, removes Ad-banners for you".
Tilläggsskärmbilder
Ladda ner SkipAds-förlängningens CRX-fil
Ladda ner SkipAds-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
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.
Grundläggande Information om Tillägg
Namn | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
Officiell webbadress | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
Beskrivning | This clicks SkipAds button, removes Ad-banners for you |
Filstorlek | 9.99 KB |
Antal Installationer | 159 |
Aktuell Version | 2.0 |
Senast Uppdaterad | 2022-06-27 |
Publiceringsdatum | 2020-06-19 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Edwin |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |