YouTube™ Auto Quality Manager

Watch YouTube™ Movies automatically in any quality

YouTube™ Auto Quality Manager란 무엇입니까?

YouTube™ Auto Quality Manager은(는) admin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Watch YouTube™ Movies automatically in any quality"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube™ Auto Quality Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        "YouTube ™ Auto Quality Manager" allows you to set the default quality for YouTube ™ videos to be played.
Configuration allows you to choose one of the following modes:
- tiny, small, medium, large, hd720, hd1080, hd1440, highres
The selected value will automatically set the resolution of the watched movie to YT.                    

확장 프로그램 기본 정보

이름 YouTube™ Auto Quality Manager YouTube™ Auto Quality Manager
ID pmfmefnfecmefnmpdnhpbgcekepjbifc
공식 URL https://chrome.google.com/webstore/detail/youtube-auto-quality-mana/pmfmefnfecmefnmpdnhpbgcekepjbifc
설명 Watch YouTube™ Movies automatically in any quality
파일 크기 20.98 KB
설치 횟수 6,700
현재 버전 2.1
최근 업데이트 2022-10-08
출시 날짜 2022-10-08
평점 4.20/5 총 5 개의 평점
개발자 admin
이메일 [email protected]
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube\u2122 Auto Quality Manager",
    "version": "2.1",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "background": {
        "service_worker": "background\/main.js"
    },
    "content_scripts": [
        {
            "js": [
                "contentscripts\/any_start.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscripts\/any_end.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "options_page": "ui\/options.html",
    "action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "YouTube\u2122 Auto Quality Manager",
        "default_popup": "ui\/pageaction.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inj\/ytcom.js",
                "inj\/emb.js",
                "inj\/any.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}