YouTube Quality Adjuster
Automatically adjusts the quality of YouTube Videos
YouTube Quality Adjuster क्या है?
YouTube Quality Adjuster hiatamaworkshop द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically adjusts the quality of YouTube Videos"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Quality Adjuster एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Adjust the quality of YouTube Videos automatically. Only available in the original YouTube page, not the embedded videos. no adds or any kind of network communication. Updated Sep/2023
एक्सटेंशन की मूल जानकारी
नाम | YouTube Quality Adjuster |
ID | ohjehldapgfhlmekcencdhikpdjmjpkk |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk |
विवरण | Automatically adjusts the quality of YouTube Videos |
फ़ाइल का आकार | 27.98 KB |
स्थापना संख्या | 1,445 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2023-10-04 |
प्रकाशन तिथि | 2021-02-09 |
रेटिंग | 3.92/5 कुल 12 रेटिंग्स |
डेवलपर | hiatamaworkshop |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Quality Adjuster", "version": "2.1", "manifest_version": 3, "description": "Automatically adjusts the quality of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "youtube_quality.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "qualityControl.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "permissions": [ "storage", "declarativeContent" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ] } |