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.

Hvad er SmartVid - Netflix, Amazon, YouTube autopause?

SmartVid - Netflix, Amazon, YouTube autopause er en Chrome-udvidelse udviklet af Shubham Bassi, og dens hovedfunktion er "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".

Udvidelsesskærmbilleder

Download SmartVid - Netflix, Amazon, YouTube autopause-udvidelses-CRX-fil

Download SmartVid - Netflix, Amazon, YouTube autopause-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
Officiel URL https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl
Beskrivelse Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
Filstørrelse 17.61 KB
Antal Installationer 24
Nuværende Version 2.0.0
Senest Opdateret 2020-09-29
Udgivelsesdato 2020-09-04
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Shubham Bassi
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/izedamo/SmartVideo
Hjælpeside-URL https://github.com/izedamo/SmartVideo/issues
Understøttede Sprog 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
}