No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
No Playlist Autoplay For YouTubeとは何ですか?
No Playlist Autoplay For YouTubeはhttps://thomasrichards.xyzによって開発されたChromeの拡張機能で、その主な機能は「You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.」です。
拡張機能のスクリーンショット
No Playlist Autoplay For YouTube拡張機能のCRXファイルをダウンロード
No Playlist Autoplay For YouTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | dkokllldoffaconpbmbaofjbadhjggil |
| 公式URL | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
| 説明 | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
| ファイルサイズ | 22.76 KB |
| インストール数 | 5,186 |
| 現在のバージョン | 65535.65535.65535.8 |
| 最終更新日 | 2021-09-12 |
| 公開日 | 2019-12-31 |
| 評価 | 4.52/5 合計 113 レビュー |
| 開発者 | https://thomasrichards.xyz |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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"
} | |