SkIntro
This extension auto skips intro for streaming services.
Qu'est-ce que SkIntro ?
SkIntro est une extension Chrome développée par Rehan Ahmed, et sa fonction principale est "This extension auto skips intro for streaming services.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SkIntro
Téléchargez les fichiers d'extension SkIntro au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | SkIntro |
ID | acjikceibgbijbnhfialnjhilckdajan |
URL Officiel | https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan |
Description | This extension auto skips intro for streaming services. |
Taille du Fichier | 168 KB |
Nombre d'Installations | 465 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2021-09-15 |
Date de Publication | 2021-07-21 |
Évaluation | 4.20/5 Total 5 Évaluations |
Développeur | Rehan Ahmed |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/reallyrehan/skintro |
URL de la Page d'Aide | https://github.com/reallyrehan/skintro |
Langues Prises en Charge | 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" } ] } |