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.

Co je SmartVid - Netflix, Amazon, YouTube autopause?

SmartVid - Netflix, Amazon, YouTube autopause je rozšíření Chrome vyvinuté Shubham Bassi, a jeho hlavní funkcí je „Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření SmartVid - Netflix, Amazon, YouTube autopause

Stáhněte si soubory rozšíření SmartVid - Netflix, Amazon, YouTube autopause ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
Oficiální URL https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl
Popis Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
Velikost souboru 17.61 KB
Počet instalací 24
Aktuální Verze 2.0.0
Poslední Aktualizace 2020-09-29
Datum Vydání 2020-09-04
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Shubham Bassi
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/izedamo/SmartVideo
URL Stránky Nápovědy https://github.com/izedamo/SmartVideo/issues
Podporované Jazyky 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
}