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.

What is SmartVid - Netflix, Amazon, YouTube autopause?

SmartVid - Netflix, Amazon, YouTube autopause is a Chrome extension developed by Shubham Bassi, and its main feature is "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".

Extension Screenshots

Download SmartVid - Netflix, Amazon, YouTube autopause Extension CRX File

Download SmartVid - Netflix, Amazon, YouTube autopause extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
Official URL 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.
File Size 17.61 KB
Installation Count 24
Current Version 2.0.0
Last Updated 2020-09-29
Publish Date 2020-09-04
Rating 5.00/5 Total 2 Ratings
Developer Shubham Bassi
Email [email protected]
Payment Type free
Extension Website https://github.com/izedamo/SmartVideo
Help Page URL https://github.com/izedamo/SmartVideo/issues
Supported Languages 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
}