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文件

下載Video Tuner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}