Disable YouTube Watch Later Autoplay
Watch individual videos that you saved for later without autoplaying all of them.
Disable YouTube Watch Later Autoplay क्या है?
Disable YouTube Watch Later Autoplay jacamera द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch individual videos that you saved for later without autoplaying all of them."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Disable YouTube Watch Later Autoplay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This browser extension disables the Watch Later autoplay behavior when selecting a video from the Watch Later list. The YouTube Watch Later feature lets users save a video to watch at a later time. When selecting a video from the Watch Later list YouTube will then always autoplay every subsequent video from the list. This happens because YouTube treats the Watch Later list just like any other playlist and there is no way to disable autoplay when viewing videos in a playlist. Once installed, the extension works automatically. When you click on a video on the Watch Later list the extension will remove the playlist parameters from the video URL, allowing you to watch the video or copy the URL without the default autoplaying playlist behavior.
एक्सटेंशन की मूल जानकारी
नाम | Disable YouTube Watch Later Autoplay |
ID | pipapjplioodfcahamejlgfloniakbpa |
आधिकारिक URL | https://chromewebstore.google.com/detail/disable-youtube-watch-lat/pipapjplioodfcahamejlgfloniakbpa |
विवरण | Watch individual videos that you saved for later without autoplaying all of them. |
फ़ाइल का आकार | 9.88 KB |
स्थापना संख्या | 645 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2023-09-25 |
प्रकाशन तिथि | 2022-03-21 |
रेटिंग | 4.50/5 कुल 16 रेटिंग्स |
डेवलपर | jacamera |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
सहायता पृष्ठ URL | https://github.com/jacamera/disable-youtube-watch-later-autoplay |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable YouTube Watch Later Autoplay", "description": "Watch individual videos that you saved for later without autoplaying all of them.", "version": "1.0.4", "manifest_version": 3, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" } } |