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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No Playlist Autoplay For YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | No Playlist Autoplay For YouTube |
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 |
ईमेल | [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" } |