SkIntro
This extension auto skips intro for streaming services.
Cos'è SkIntro?
SkIntro è un'estensione di Chrome sviluppata da Rehan Ahmed, e la sua funzione principale è "This extension auto skips intro for streaming services.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SkIntro
Scarica i file di estensione SkIntro in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | SkIntro |
ID | acjikceibgbijbnhfialnjhilckdajan |
URL Ufficiale | https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan |
Descrizione | This extension auto skips intro for streaming services. |
Dimensione del File | 168 KB |
Conteggio Installazioni | 465 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-09-15 |
Data di Pubblicazione | 2021-07-21 |
Valutazione | 4.20/5 Totale 5 Valutazioni |
Sviluppatore | Rehan Ahmed |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/reallyrehan/skintro |
URL della Pagina di Aiuto | https://github.com/reallyrehan/skintro |
Lingue Supportate | 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" } ] } |