SkIntro
This extension auto skips intro for streaming services.
什么是SkIntro?
SkIntro是由Rehan Ahmed开发的Chrome扩展程序,该扩展的主要功能是“This extension auto skips intro for streaming services.”。
扩展截图
下载SkIntro扩展crx文件
下载SkIntro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you always press that "Skip Intro" button when watching a show online? What if there was an app that did that for you?
SkIntro was born out of that idea and it supports auto-skipping intros on multiple streaming services,
- Netflix
- Disney+
- Peacock
- Amazon PrimeVideo
Support for more services is coming soon.
It also works as an ad-blocker by auto-skipping ads on YouTube by pressing the "Skip Ad" button as soon as it appears. 扩展基本信息
| 名称 | |
| ID | acjikceibgbijbnhfialnjhilckdajan |
| 官方URL | https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan |
| 简介 | This extension auto skips intro for streaming services. |
| 文件大小 | 168 KB |
| 安装次数 | 465 |
| 当前版本 | 1.1 |
| 更新时间 | 2021-09-15 |
| 上架时间 | 2021-07-21 |
| 评分 | 4.20/5 共5次评分 |
| 开发者 | Rehan Ahmed |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/reallyrehan/skintro |
| 帮助页面URL | https://github.com/reallyrehan/skintro |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SkIntro",
"description": "This extension auto skips intro for streaming services.",
"version": "1.1",
"icons": {
"128": "icon.png"
},
"options_page": "options.html",
"browser_action": {
"default_icon": "images\/icon.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.netflix.com\/*",
"https:\/\/*.amazon.com\/*",
"https:\/\/*.peacocktv.com\/*",
"https:\/\/*.disneyplus.com\/*",
"https:\/\/*.youtube.com\/*"
],
"js": [
"jquery.min.js",
"utilities.js"
],
"run_at": "document_end"
}
]
} | |