No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
Vad är No Playlist Autoplay For YouTube?
No Playlist Autoplay For YouTube är en Chrome-tillägg utvecklad av https://thomasrichards.xyz, och dess huvudfunktion är "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.".
Tilläggsskärmbilder
Ladda ner No Playlist Autoplay For YouTube-förlängningens CRX-fil
Ladda ner No Playlist Autoplay For YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | No Playlist Autoplay For YouTube |
ID | dkokllldoffaconpbmbaofjbadhjggil |
Officiell webbadress | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
Beskrivning | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
Filstorlek | 22.76 KB |
Antal Installationer | 5,186 |
Aktuell Version | 65535.65535.65535.8 |
Senast Uppdaterad | 2021-09-12 |
Publiceringsdatum | 2019-12-31 |
Betyg | 4.52/5 Totalt 113 Betyg |
Utvecklare | https://thomasrichards.xyz |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |