YTQ - YouTube Quality Selector

A chrome plugin to automatically set the quality of YouTube videos

YTQ - YouTube Quality Selector란 무엇입니까?

YTQ - YouTube Quality Selector은(는) https://www.codemic.co.za에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome plugin to automatically set the quality of YouTube videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YTQ - YouTube Quality Selector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tired of YouTube automatically dropping the quality to suit bandwith and connection demands?
Since YouTube does not allow you to set a default quality for videos, this plugin aims to eliminate the need of manually selecting a higher quality for each video. Simply set your default quality and let the plugin take care of the rest.                    

확장 프로그램 기본 정보

이름 YTQ - YouTube Quality Selector YTQ - YouTube Quality Selector
ID koekelbfakgefdogcfjjaimakbecekbj
공식 URL https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj
설명 A chrome plugin to automatically set the quality of YouTube videos
파일 크기 207 KB
설치 횟수 228
현재 버전 2
최근 업데이트 2023-07-06
출시 날짜 2021-09-02
평점 5.00/5 총 1 개의 평점
개발자 https://www.codemic.co.za
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YTQ - YouTube Quality Selector",
    "description": "A chrome plugin to automatically set the quality of YouTube videos",
    "version": "2",
    "browser_action": {
        "default_title": "YTQ - YouTube Quality Selector",
        "default_icon": "icons\/logo.png",
        "default_popup": "YTQ.html"
    },
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "http:\/\/*.youtube.com\/*",
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "popup.js",
                "YTQ.js"
            ]
        }
    ],
    "manifest_version": 2
}