Sponsor Skipper
Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
什么是Sponsor Skipper?
Sponsor Skipper是由https://zackbanack.com开发的Chrome扩展程序,该扩展的主要功能是“Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.”。
扩展截图
下载Sponsor Skipper扩展crx文件
下载Sponsor Skipper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/
扩展基本信息
名称 | Sponsor Skipper |
ID | jfdipdnjgckbpkomodlcfhmkencihepc |
官方URL | https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc |
简介 | Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words. |
文件大小 | 20.04 KB |
安装次数 | 232 |
当前版本 | 1.1 |
更新时间 | 2019-11-26 |
上架时间 | 2019-11-25 |
评分 | 1.00/5 共1次评分 |
开发者 | https://zackbanack.com |
付费类型 | free |
扩展官网 | https://www.zackbanack.com |
帮助页面URL | https://www.paypal.me/zackbanack |
支持的语言 | 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 } |