No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
Was ist No Playlist Autoplay For YouTube?
No Playlist Autoplay For YouTube ist eine Chrome-Erweiterung, die von https://thomasrichards.xyz entwickelt wurde, und ihr Hauptmerkmal ist "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.".
Erweiterungsscreenshots
No Playlist Autoplay For YouTube-Erweiterungs-CRX-Datei herunterladen
Laden Sie No Playlist Autoplay 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
With this extension, when you reach the end of a video in a playlist, the next video is prevented from playing automatically. Click the extension icon to toggle this behaviour on and off. Refresh YouTube after toggling. Alternatively use the shortcut (ctrl+shift+y), which can be changed at chrome://extensions/shortcuts. Source code available via my website. Enjoy.
Grundlegende Informationen zur Erweiterung
Name | No Playlist Autoplay For YouTube |
ID | dkokllldoffaconpbmbaofjbadhjggil |
Offizielle URL | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
Beschreibung | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
Dateigröße | 22.76 KB |
Installationsanzahl | 5,186 |
Aktuelle Version | 65535.65535.65535.8 |
Letztes Update | 2021-09-12 |
Veröffentlichungsdatum | 2019-12-31 |
Bewertung | 4.52/5 Insgesamt 113 Bewertungen |
Entwickler | https://thomasrichards.xyz |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Thomas Richards", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "128": "icons\/Pause-128.png", "64": "icons\/Pause-64.png", "32": "icons\/Pause-32.png" }, "default_title": "Toggle YouTube Playlist Autoplay" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "You can turn autoplay off\/on for playlists on YouTube. Refresh YouTube after toggling.", "icons": { "128": "icons\/Logo-128.png" }, "name": "No Playlist Autoplay For YouTube", "options_page": "options.html", "permissions": [ "storage", "*:\/\/*.youtube.com\/*" ], "version": "65535.65535.65535.8" } |