SmartVid - Netflix, Amazon, YouTube autopause

Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.

Qu'est-ce que SmartVid - Netflix, Amazon, YouTube autopause ?

SmartVid - Netflix, Amazon, YouTube autopause est une extension Chrome développée par Shubham Bassi, et sa fonction principale est "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension SmartVid - Netflix, Amazon, YouTube autopause

Téléchargez les fichiers d'extension SmartVid - Netflix, Amazon, YouTube autopause 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

                        This extension checks and automatically pauses the videos playing on Netflix, YouTube and PrimeVideo websites when you switch to another tab. When you switch back to any of the paused tabs, the video will resume from where you left off.                    

Informations de Base sur l'Extension

Nom SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
URL Officiel https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl
Description Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
Taille du Fichier 17.61 KB
Nombre d'Installations 24
Version Actuelle 2.0.0
Dernière Mise à Jour 2020-09-29
Date de Publication 2020-09-04
Évaluation 5.00/5 Total 2 Évaluations
Développeur Shubham Bassi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/izedamo/SmartVideo
URL de la Page d'Aide https://github.com/izedamo/SmartVideo/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SmartVid - Netflix, Amazon, YouTube autopause",
    "version": "2.0.0",
    "description": "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.",
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.netflix.com\/*"
            ],
            "js": [
                "scripts\/content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/SmartVideo16.png",
        "32": "icons\/SmartVideo32.png",
        "48": "icons\/SmartVideo48.png",
        "128": "icons\/SmartVideo128.png"
    },
    "manifest_version": 2
}