Youtube Auto Quality

Quality settings on Youtube videos will be defaulted to the highest quality possible.

Youtube Auto Quality क्या है?

Youtube Auto Quality jamesw8dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quality settings on Youtube videos will be defaulted to the highest quality possible."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube Auto Quality एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        YouTube's auto quality feature doesn't always use the highest quality supported. This extension automatically sets the quality to the best option per video.

Release Log
---
v0.2 - Fix bug when entering from youtube.com
v0.1 - Initial release

Disclaimer
--
YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

एक्सटेंशन की मूल जानकारी

नाम Youtube Auto Quality Youtube Auto Quality
ID dggjpamoacejckpnhgnlmajommekebho
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho
विवरण Quality settings on Youtube videos will be defaulted to the highest quality possible.
फ़ाइल का आकार 26.3 KB
स्थापना संख्या 21
वर्तमान संस्करण 0.2
अंतिम अपडेट 2021-10-15
प्रकाशन तिथि 2021-10-06
डेवलपर jamesw8dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Auto Quality",
    "description": "Quality settings on Youtube videos will be defaulted to the highest quality possible.",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/js\/setQuality.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}