Sponsor Skipper
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
What is Sponsor Skipper?
Sponsor Skipper is a Chrome extension developed by https://zackbanack.com, and its main feature is "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.".
Extension Screenshots
Download Sponsor Skipper Extension CRX File
Download Sponsor Skipper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Sponsor Skipper |
ID | jfdipdnjgckbpkomodlcfhmkencihepc |
Official URL | https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc |
Description | Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words. |
File Size | 20.04 KB |
Installation Count | 232 |
Current Version | 1.1 |
Last Updated | 2019-11-26 |
Publish Date | 2019-11-25 |
Rating | 1.00/5 Total 1 Ratings |
Developer | https://zackbanack.com |
Payment Type | free |
Extension Website | https://www.zackbanack.com |
Help Page URL | https://www.paypal.me/zackbanack |
Supported Languages | 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 } |