Sponsor Skipper
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
Co je Sponsor Skipper?
Sponsor Skipper je rozšíření Chrome vyvinuté https://zackbanack.com, a jeho hlavní funkcí je „Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sponsor Skipper
Stáhněte si soubory rozšíření Sponsor Skipper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words. *Notes:* - This extension requires use of YouTube closed captions to work - Tab must be in focus How it works: - Ever x seconds, the extension will read the video captions - If a trigger word is found in close proximity to a form of the word "sponsor", then we enter into a sponsored segment - While in a sponsored segment, if the trigger word is re-encountered or we encounter a word from the in-ad list, keep skimming through the video GitHub: https://github.com/zbanack/youtube-sponsor-skipper/
Základní Informace o Rozšíření
Název | Sponsor Skipper |
ID | jfdipdnjgckbpkomodlcfhmkencihepc |
Oficiální URL | https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc |
Popis | Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words. |
Velikost souboru | 20.04 KB |
Počet instalací | 232 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2019-11-26 |
Datum Vydání | 2019-11-25 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | https://zackbanack.com |
Typ Platby | free |
Webové stránky Rozšíření | https://www.zackbanack.com |
URL Stránky Nápovědy | https://www.paypal.me/zackbanack |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sponsor Skipper", "short_name": "Skipper", "description": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.", "version": "1.1", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "storage" ], "icons": { "32": "\/images\/icons-32.png", "192": "\/images\/icons-192.png", "512": "\/images\/icons-512.png" }, "browser_action": { "default_title": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.", "default_icon": "\/images\/icons-32.png", "default_popup": "index.html" }, "manifest_version": 2 } |