Controls for YouTube

A Chrome extension that provides useful controls and options for open YouTube tabs.

Controls for YouTubeとは何ですか?

Controls for YouTubeはhttp://jamesturner.imによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that provides useful controls and options for open YouTube tabs.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Controls for YouTube拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                                            

拡張機能の基本情報

名前 Controls for YouTube Controls for YouTube
ID ifhhlbbnclgidbapibofmfoifooibiad
公式URL https://chrome.google.com/webstore/detail/controls-for-youtube/ifhhlbbnclgidbapibofmfoifooibiad
説明 A Chrome extension that provides useful controls and options for open YouTube tabs.
ファイルサイズ 19.48 KB
インストール数 57
現在のバージョン 0.1
最終更新日 2013-08-19
公開日 2013-08-19
評価 4.00/5 合計 1 レビュー
開発者 http://jamesturner.im
支払い方法 free
拡張機能のウェブサイト http://jamesturner.im/controls-for-youtube
ヘルプページのURL http://jamesturner.im/controls-for-youtube
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Controls for YouTube",
    "description": "A Chrome extension that provides useful controls and options for open YouTube tabs.",
    "version": "0.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "James Turner",
    "homepage_url": "http:\/\/jamesturner.im\/controls-for-youtube",
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/watch*",
        "*:\/\/*.youtube.com\/results*"
    ],
    "web_accessible_resources": [
        "js\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*",
                "*:\/\/*.youtube.com\/results*"
            ],
            "js": [
                "js\/controls.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    }
}