Speak Faster

Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!

Speak Fasterとは何ですか?

Speak Fasterはviktor.vesely.vvによって開発されたChromeの拡張機能で、その主な機能は「Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!」です。

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

screenshot

Speak Faster拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Are you tired of watching videos at normal speed? If yes, then this extension is for you! Speed up your school lectures or skip annoying video ads, the sky is the limit...                    

拡張機能の基本情報

名前 Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
公式URL https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
説明 Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
ファイルサイズ 66.61 KB
インストール数 74
現在のバージョン 1.3
最終更新日 2020-05-01
公開日 2020-05-01
評価 5.00/5 合計 1 レビュー
開発者 viktor.vesely.vv
支払い方法 free
ヘルプページのURL https://github.com/viktorvesely/speakFaster
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Faster",
    "version": "1.3",
    "description": "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!",
    "manifest_version": 2,
    "icons": {
        "128": "\/assets\/faster-icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/content\/inject.html"
    ],
    "background": {
        "scripts": [
            "\/shared\/msg.js",
            "\/background\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "\/popup\/index.html",
        "default_icon": {
            "128": "\/assets\/faster-icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "\/shared\/msg.js",
                "\/content\/change.js",
                "\/content\/position.js",
                "\/content\/main.js"
            ],
            "css": [
                "\/content\/change.css"
            ]
        }
    ]
}