YouTube Ad Blocker
Automatically blocks advertisement of YouTube Videos
Hvad er YouTube Ad Blocker?
YouTube Ad Blocker er en Chrome-udvidelse udviklet af hiatamaworkshop, og dens hovedfunktion er "Automatically blocks advertisement of YouTube Videos".
Udvidelsesskærmbilleder
Download YouTube Ad Blocker-udvidelses-CRX-fil
Download YouTube Ad Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
The extension functions as "Auto Clicker", it will click on 【Close / Skip Buttons】of the YouTube videos.
It will work for some time, just a silly small function. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | lnnfiihdkikdognbnlbnfajpeccdohka |
| Officiel URL | https://chromewebstore.google.com/detail/youtube-ad-blocker/lnnfiihdkikdognbnlbnfajpeccdohka |
| Beskrivelse | Automatically blocks advertisement of YouTube Videos |
| Filstørrelse | 62.03 KB |
| Antal Installationer | 37 |
| Nuværende Version | 0.1.1 |
| Senest Opdateret | 2021-02-18 |
| Udgivelsesdato | 2021-02-17 |
| Udvikler | hiatamaworkshop |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://hiatamaworkshop.com/main.html |
| Understøttede Sprog | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Ad Blocker",
"version": "0.1.1",
"manifest_version": 2,
"description": "Automatically blocks advertisement of YouTube Videos",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"browser_action": {
"default_popup": "youtube_adBlock.html",
"default_icon": "icons\/icon16.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
"content.js",
"inject.js"
],
"permissions": [
"storage"
]
} | |