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 |
| 官方網址 | 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"
}
]
} | |