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 |
| Eメール | [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"
}
]
} | |