Stop AutoPlay Next for YouTube™
Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)
Was ist Stop AutoPlay Next for YouTube™?
Stop AutoPlay Next for YouTube™ ist eine Chrome-Erweiterung, die von tlintspr entwickelt wurde, und ihr Hauptmerkmal ist "Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)".
Erweiterungsscreenshots
Stop AutoPlay Next for YouTube™-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stop AutoPlay Next for YouTube™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Stop AutoPlay Next for YouTube™ |
ID | bhnhbmjfaanopkalgkjoiemhekdnhanh |
Offizielle URL | https://chromewebstore.google.com/detail/stop-autoplay-next-for-yo/bhnhbmjfaanopkalgkjoiemhekdnhanh |
Beschreibung | Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button) |
Dateigröße | 49.88 KB |
Installationsanzahl | 5,782 |
Aktuelle Version | 0.3.0 |
Letztes Update | 2021-11-16 |
Veröffentlichungsdatum | 2020-04-13 |
Bewertung | 3.83/5 Insgesamt 76 Bewertungen |
Entwickler | tlintspr |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://add0n.com/stop-autoplay.html |
Hilfeseite URL | https://add0n.com/stop-autoplay.html |
Unterstützte Sprachen | 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" } } |