Video Speed Lord

This extension allow you to control the speed of the video playing. Feel like a time lord!

Video Speed Lordとは何ですか?

Video Speed Lordはroman.oxenukによって開発されたChromeの拡張機能で、その主な機能は「This extension allow you to control the speed of the video playing. Feel like a time lord!」です。

Video Speed Lord拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Hackathon project for speeding up and slowing down HTML5 videos, especialy at vk.com =)
Thanks to GoHack Hackathon (vk.com/gohack) for pizza and fun!                    

拡張機能の基本情報

名前 Video Speed Lord Video Speed Lord
ID kmeeediidboennbhdjfceodhdboaphlc
公式URL https://chrome.google.com/webstore/detail/video-speed-lord/kmeeediidboennbhdjfceodhdboaphlc
説明 This extension allow you to control the speed of the video playing. Feel like a time lord!
ファイルサイズ 5.75 KB
インストール数 22
現在のバージョン 1.0
最終更新日 2017-04-15
公開日 2017-04-15
評価 5.00/5 合計 4 レビュー
開発者 roman.oxenuk
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Speed Lord",
    "description": "This extension allow you to control the speed of the video playing. Feel like a time lord!",
    "version": "1.0",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "permissions": [
        "activeTab",
        "debugger",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}