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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}