Stop AutoPlay Next for YouTube™

Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)

什麼是Stop AutoPlay Next for YouTube™?

Stop AutoPlay Next for YouTube™是由tlintspr開發的Chrome擴展程式,該擴展的主要功能是“Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)”。

擴展截圖

screenshot

下載Stop AutoPlay Next for YouTube™擴展crx文件

下載Stop AutoPlay Next for YouTube™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The "Stop AutoPlay Next for YouTube" extension permanently disables YouTube from auto-playing the next suggested track by rejecting access to the module. This module is responsible for loading the next track (suggested track). It also dims the next playing item in the right sidebar area of the YouTube pages. The extension also turns the auto-play button off in the player area.

Notes:
After installing this extension, the next track suggestion box is blurred.
After installing this extension, the next slider button on the player is removed.
You can change the opacity of this box or hide it by setting the opacity value to zero (not available on v3).

Use Cases:
Open YouTube just to play a song.
Open multiple players in the background.                    

擴展基本資訊

名稱 Stop AutoPlay Next for YouTube™ Stop AutoPlay Next for YouTube™
ID bhnhbmjfaanopkalgkjoiemhekdnhanh
官方網址 https://chromewebstore.google.com/detail/stop-autoplay-next-for-yo/bhnhbmjfaanopkalgkjoiemhekdnhanh
簡介 Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)
檔案大小 49.88 KB
安裝次數 5,782
目前版本 0.3.0
更新時間 2021-11-16
上架時間 2020-04-13
評分 3.83/5 共 76 次評分
開發者 tlintspr
電子郵箱 [email protected]
付費類型 free
擴展官網 https://add0n.com/stop-autoplay.html
說明頁面URL https://add0n.com/stop-autoplay.html
支援的語言 de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.3.0",
    "minimum_chrome_version": "95",
    "name": "Stop AutoPlay Next for YouTube\u2122",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "css": [
                "data\/inject.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/add0n.com\/stop-autoplay.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    }
}