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.

SmartVid - Netflix, Amazon, YouTube autopause là gì?

SmartVid - Netflix, Amazon, YouTube autopause là một tiện ích mở rộng Chrome được phát triển bởi Shubham Bassi, và tính năng chính của nó là "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng SmartVid - Netflix, Amazon, YouTube autopause

Tải xuống các tệp mở rộng SmartVid - Netflix, Amazon, YouTube autopause dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SmartVid - Netflix, Amazon, YouTube autopause SmartVid - Netflix, Amazon, YouTube autopause
ID hhgnmllddghdmpmnbdpkcmahegbdclnl
URL Chính Thức https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl
Mô tả Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
Kích Thước Tệp 17.61 KB
Số Lần Cài Đặt 24
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2020-09-29
Ngày Phát Hành 2020-09-04
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Shubham Bassi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/izedamo/SmartVideo
URL Trang Trợ Giúp https://github.com/izedamo/SmartVideo/issues
Ngôn Ngữ Được Hỗ Trợ 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
}