No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
O que é No Playlist Autoplay For YouTube?
No Playlist Autoplay For YouTube é uma extensão do Chrome desenvolvida por https://thomasrichards.xyz, e sua principal característica é "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão No Playlist Autoplay For YouTube
Baixe arquivos de extensão No Playlist Autoplay For YouTube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | No Playlist Autoplay For YouTube |
ID | dkokllldoffaconpbmbaofjbadhjggil |
URL Oficial | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
Descrição | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
Tamanho do Arquivo | 22.76 KB |
Contagem de Instalações | 5,186 |
Versão Atual | 65535.65535.65535.8 |
Última Atualização | 2021-09-12 |
Data de Publicação | 2019-12-31 |
Classificação | 4.52/5 Total de 113 Avaliações |
Desenvolvedor | https://thomasrichards.xyz |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } |