Stop AutoPlay

This extension is meant to stop all playing videos

Stop AutoPlay là gì?

Stop AutoPlay là một tiện ích mở rộng Chrome được phát triển bởi roastario, và tính năng chính của nó là "This extension is meant to stop all playing videos".

Tải xuống tệp CRX của tiện ích mở rộng Stop AutoPlay

Tải xuống các tệp mở rộng Stop AutoPlay 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

                                            

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

Tên Stop AutoPlay Stop AutoPlay
ID ablmlhnccodemhiobfclbpicbpljldji
URL Chính Thức https://chrome.google.com/webstore/detail/stop-autoplay/ablmlhnccodemhiobfclbpicbpljldji
Mô tả This extension is meant to stop all playing videos
Kích Thước Tệp 6.4 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2017-10-30
Ngày Phát Hành 2017-10-30
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển roastario
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stop AutoPlay",
    "description": "This extension is meant to stop all playing videos",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}