Video Tuner

Why tune your piano when you could tune youtube instead?

Video Tuner란 무엇입니까?

Video Tuner은(는) callum189에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Why tune your piano when you could tune youtube instead?"입니다.

확장 프로그램 스크린샷

screenshot

Video Tuner 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will adjust the pitch of HTML5 Videos to compensate for instruments that are slightly out of tune and are more difficult to tune (like a piano). As a result, you can play that old janky piano along with YouTube videos, without needing to get it tuned. There are also a couple other features - changing playback speed and pitch unrelated to an instrument.

Updates planned for the future: integrate transposition option into instrument feature so they work at the same time, at the moment, you can either transpose based on a number of semitones OR based on the instrument, but not both.

Note: there have been a couple issues with this extension messing with the CSS of websites. The issues have mostly been fixed but if you notice your favourite website now looks weird, consider disabling this while you're not actively using it.                    

확장 프로그램 기본 정보

이름 Video Tuner Video Tuner
ID hplbaefjnkjpbnbkcbkjmdcedcbncppm
공식 URL https://chromewebstore.google.com/detail/video-tuner/hplbaefjnkjpbnbkcbkjmdcedcbncppm
설명 Why tune your piano when you could tune youtube instead?
파일 크기 36.04 KB
설치 횟수 1,303
현재 버전 0.3.1
최근 업데이트 2019-11-27
출시 날짜 2019-11-27
평점 3.63/5 총 8 개의 평점
개발자 callum189
결제 유형 free
확장 프로그램 웹 사이트 https://sites.google.com/view/videotuner/home
도움말 페이지 URL https://sites.google.com/view/videotuner/feedback
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Tuner",
    "short_name": "vidtuner",
    "version": "0.3.1",
    "manifest_version": 2,
    "description": "Why tune your piano when you could tune youtube instead?",
    "homepage_url": "https:\/\/sites.google.com\/view\/videotuner\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png",
            "48": "icons\/icon48.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/hangouts\/*",
                "https:\/\/meet.google.com\/*",
                "https:\/\/teamtreehouse.com\/*",
                "http:\/\/www.hitbox.tv\/*"
            ],
            "css": [
                "popup.css"
            ],
            "js": [
                "jungle.js",
                "content_script.js",
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ]
}