Stop AutoPlay Next for YouTube™
Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)
Stop AutoPlay Next for YouTube™ क्या है?
Stop AutoPlay Next for YouTube™ tlintspr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Stop AutoPlay Next for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The "Stop AutoPlay Next for YouTube" extension permanently disables YouTube from auto-playing the next suggested track by rejecting access to the module. This module is responsible for loading the next track (suggested track). It also dims the next playing item in the right sidebar area of the YouTube pages. The extension also turns the auto-play button off in the player area. Notes: After installing this extension, the next track suggestion box is blurred. After installing this extension, the next slider button on the player is removed. You can change the opacity of this box or hide it by setting the opacity value to zero (not available on v3). Use Cases: Open YouTube just to play a song. Open multiple players in the background.
एक्सटेंशन की मूल जानकारी
नाम | Stop AutoPlay Next for YouTube™ |
ID | bhnhbmjfaanopkalgkjoiemhekdnhanh |
आधिकारिक URL | https://chromewebstore.google.com/detail/stop-autoplay-next-for-yo/bhnhbmjfaanopkalgkjoiemhekdnhanh |
विवरण | Stop YouTube from playing the next track, and auto navigate to the next suggestion (aka disable autoplay button) |
फ़ाइल का आकार | 49.88 KB |
स्थापना संख्या | 5,782 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2021-11-16 |
प्रकाशन तिथि | 2020-04-13 |
रेटिंग | 3.83/5 कुल 76 रेटिंग्स |
डेवलपर | tlintspr |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://add0n.com/stop-autoplay.html |
सहायता पृष्ठ URL | https://add0n.com/stop-autoplay.html |
समर्थित भाषाएँ | de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.0", "minimum_chrome_version": "95", "name": "Stop AutoPlay Next for YouTube\u2122", "description": "__MSG_description__", "default_locale": "en", "permissions": [ "storage", "declarativeNetRequest" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "data\/inject.js" ], "css": [ "data\/inject.css" ], "run_at": "document_start" } ], "background": { "service_worker": "worker.js" }, "homepage_url": "https:\/\/add0n.com\/stop-autoplay.html", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" } } |