YouTube Autoplay Disabler

Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.

YouTube Autoplay Disabler là gì?

YouTube Autoplay Disabler là một tiện ích mở rộng Chrome được phát triển bởi Luciano Ratamero, và tính năng chính của nó là "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".

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

screenshot

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

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

                        Free and open-sourced alternative for disabling YouTube's autoplay "feature"

Checks if YouTube autoplay is on and, if it is, disables it.

https://github.com/lucianoratamero/youtube-autoplay-disabler                    

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

Tên YouTube Autoplay Disabler YouTube Autoplay Disabler
ID mlebignjhimfeggkjhhgbhomibiplmem
URL Chính Thức https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem
Mô tả Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
Kích Thước Tệp 366 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2021-04-29
Ngày Phát Hành 2018-06-15
Đánh Giá 3.12/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Luciano Ratamero
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": "YouTube Autoplay Disabler",
    "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
    "version": "0.2.1",
    "icons": {
        "128": "icon-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-small.png"
    }
}