Stop Youtube Autoplay

This extension allows you to disable autoplay by default on Youtube

Stop Youtube Autoplay là gì?

Stop Youtube Autoplay là một tiện ích mở rộng Chrome được phát triển bởi Joseph Feld, và tính năng chính của nó là "This extension allows you to disable autoplay by default on Youtube".

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

screenshot
screenshot

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

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

                        This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup.

Feel free to contact me if you find any issues or have any suggestions.

This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.                    

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

Tên Stop Youtube Autoplay Stop Youtube Autoplay
ID npcghnpganhnghapekiicaeiobnhbbfa
URL Chính Thức https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa
Mô tả This extension allows you to disable autoplay by default on Youtube
Kích Thước Tệp 41.84 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2018-10-29
Ngày Phát Hành 2018-10-29
Đánh Giá 3.02/5 Tổng số 60 Đánh Giá
Nhà Phát Triển Joseph Feld
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 Youtube Autoplay",
    "short_name": "No Autoplay",
    "description": "This extension allows you to disable autoplay by default on Youtube",
    "version": "1.3",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "matches": [
            "https:\/\/www.youtube.com\/watch*",
            "http:\/\/www.youtube.com\/watch*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}