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ファイルをダウンロード

YTQ - YouTube Quality Selector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}