Skipfast intro, recap, next and more
Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.
什麼是Skipfast intro, recap, next and more?
Skipfast intro, recap, next and more是由Michaël Faurel開發的Chrome擴展程式,該擴展的主要功能是“Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.”。
擴展截圖
下載Skipfast intro, recap, next and more擴展crx文件
下載Skipfast intro, recap, next and more擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically skip Intro, Recaps and Next episode for Netflix, AppleTV, Prime Video and Disney plus prompts. IMPORTANT: you need to refresh the Netflix, AppleTV, Prime Video or Disney plus page only once after installing the extension. It's not dependent on language. You can check the code here : https://github.com/mfaurel/skipfast You can open an issue or send a pull request if you find any bug. If you want to buy me a coffee, here's my paypal : https://paypal.me/MichaelFaurel
擴展基本資訊
名稱 | Skipfast intro, recap, next and more |
ID | gjaffkjplmcnjonnmoagianaeacjfipj |
官方網址 | https://chromewebstore.google.com/detail/skipfast-intro-recap-next/gjaffkjplmcnjonnmoagianaeacjfipj |
簡介 | Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts. |
檔案大小 | 351 KB |
安裝次數 | 121 |
目前版本 | 2.0.0 |
更新時間 | 2023-12-04 |
上架時間 | 2022-03-13 |
評分 | 5.00/5 共 5 次評分 |
開發者 | Michaël Faurel |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/mfaurel/skipfast |
說明頁面URL | https://github.com/mfaurel/skipfast/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Skipfast intro, recap, next and more", "description": "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.", "author": "Micha\u00ebl Faurel", "version": "2.0.0", "manifest_version": 3, "icons": { "128": "src\/assets\/icon128x128_2.png" }, "background": { "service_worker": "src\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/content_script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "src\/popup.html" } } |