Speak Faster

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

What is Speak Faster?

Speak Faster is a Chrome extension developed by viktor.vesely.vv, and its main feature is "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Extension Screenshots

screenshot

Download Speak Faster Extension CRX File

Download Speak Faster extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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...                    

Extension Basic Information

Name Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
Official URL https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Description Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
File Size 66.61 KB
Installation Count 74
Current Version 1.3
Last Updated 2020-05-01
Publish Date 2020-05-01
Rating 5.00/5 Total 1 Ratings
Developer viktor.vesely.vv
Payment Type free
Help Page URL https://github.com/viktorvesely/speakFaster
Supported Languages 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"
            ]
        }
    ]
}