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"
            ]
        }
    ]
}