YouTube Ad Controller
Fast forward and rewind YouTube ads using your arrow keys!
Vad är YouTube Ad Controller?
YouTube Ad Controller är en Chrome-tillägg utvecklad av Briann, och dess huvudfunktion är "Fast forward and rewind YouTube ads using your arrow keys!".
Tilläggsskärmbilder
Ladda ner YouTube Ad Controller-förlängningens CRX-fil
Ladda ner YouTube Ad Controller-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
Have you ever wanted to re-watch an ad, or skip it? YouTube Ad Controller lets you fast forward and rewind YouTube video ads with your arrow keys, just like on any video!
Grundläggande Information om Tillägg
Namn | |
ID | fmklhcikkdkambjpmmpdiaihncopfhlg |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-ad-controller/fmklhcikkdkambjpmmpdiaihncopfhlg |
Beskrivning | Fast forward and rewind YouTube ads using your arrow keys! |
Filstorlek | 10.76 KB |
Antal Installationer | 191 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2022-07-19 |
Publiceringsdatum | 2022-07-18 |
Betyg | 3.00/5 Totalt 1 Betyg |
Utvecklare | Briann |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://extensions.brianwalczak.com |
Hjälpsida URL | https://www.brianwalczak.com |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Ad Controller", "description": "Fast forward and rewind YouTube ads using your arrow keys!", "version": "1.0", "author": "ComplexxBrian", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "keyPress.js" ] } ], "icons": { "128": "icon-128.png", "16": "icon-small.png", "48": "icon-48.png" }, "action": { "default_popup": "popup.html", "default_title": "Ad Controller", "default_icon": "icon-small.png" } } |