YouTube Auto HD & More (Open Source)

Youtube HD quality selector. Theater mode. Right click Search in Youtube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported

YouTube Auto HD & More (Open Source)란 무엇입니까?

YouTube Auto HD & More (Open Source)은(는) extensioncreatorsllc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Youtube HD quality selector. Theater mode. Right click Search in Youtube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Auto HD & More (Open Source) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features:

✔ Fully open source: (https://github.com/sameernyaupane/youtube-auto-hd).
  No tracking, or any user data collection. Check the code for yourself! :)

✔ Option to Select best available quality automatically

✔ Supports up to 8k quality and (60fps/50fps/48fps/30fps) modes

✔ Theater mode toggle

✔ Right click "Search YouTube for" context menu. 
  Select any text on a webpage then right click on it then click the context 
  menu item to search directly on YouTube.

✔ Color Palette to choose your color theme from

✔ Dark Mode toggle

✔ Option to use Youtube's own "Auto mode" quality

✔ Lightweight: Only 24.4KiB in size

✔ Efficient: Uses Youtube's own JS event to make changes to DOM. So, very 
  minimal resource is consumed

For usage tutorial,feedback, suggestions please use:
http://opensourceaddons.com/addons/youtube-auto-hd/

Link to source code:
https://github.com/sameernyaupane/youtube-auto-hd

Privacy Policy:
This plugin does not collect any data from the user.

Disclaimer:
YouTube™ is a trademark of Google™. This extension is not endorsed by Google™ or YouTube™.                    

확장 프로그램 기본 정보

이름 YouTube Auto HD & More (Open Source) YouTube Auto HD & More (Open Source)
ID jamafpflleegkoebnonmglpgocndhmfg
공식 URL https://chrome.google.com/webstore/detail/youtube-auto-hd-more-open/jamafpflleegkoebnonmglpgocndhmfg
설명 Youtube HD quality selector. Theater mode. Right click Search in Youtube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported
파일 크기 27.7 KB
설치 횟수 2,000
현재 버전 1.0.7
최근 업데이트 2019-08-27
출시 날짜 2019-08-27
평점 3.89/5 총 28 개의 평점
개발자 extensioncreatorsllc
결제 유형 free
개인정보 보호 정책 페이지 URL https://bornsecret.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Auto HD & More (Open Source)",
    "description": "Youtube HD quality selector. Theater mode. Right click Search in Youtube. Up to 8k\/4k (60fps\/50fps\/48fps\/30fps) supported",
    "version": "1.0.7",
    "author": "Sameer Nyaupane",
    "icons": {
        "16": "youtubehd-16.png",
        "48": "youtubehd-48.png",
        "128": "youtubehd-128.png"
    },
    "browser_action": {
        "default_title": "YouTube Auto HD & More",
        "default_icon": "youtubehd-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        ""
    ]
}