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