Twitter Playback Speed Booster

Twitter Audio and Video Playback Speed Booster

What is Twitter Playback Speed Booster?

Twitter Playback Speed Booster is a Chrome extension developed by https://erasmo.dev, and its main feature is "Twitter Audio and Video Playback Speed Booster".

Extension Screenshots

screenshot

Download Twitter Playback Speed Booster Extension CRX File

Download Twitter Playback Speed Booster 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

                        The new audio feature in Twitter is awesome, but listen some big audios can be annoying. With this extension you can change the speed of any media on Twitter with keyboard shortcuts.                    

Extension Basic Information

Name Twitter Playback Speed Booster Twitter Playback Speed Booster
ID pfejkfajjnklkfpkpagielbffjdmikkk
Official URL https://chromewebstore.google.com/detail/twitter-playback-speed-bo/pfejkfajjnklkfpkpagielbffjdmikkk
Description Twitter Audio and Video Playback Speed Booster
File Size 57.45 KB
Installation Count 464
Current Version 1.0
Last Updated 2022-08-21
Publish Date 2020-06-18
Rating 5.00/5 Total 3 Ratings
Developer https://erasmo.dev
Email [email protected]
Payment Type free
Extension Website https://erasmo.dev
Help Page URL https://erasmo.dev
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Playback Speed Booster",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Twitter Audio and Video Playback Speed Booster",
    "background": {
        "scripts": [
            "test.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/twitter.com\/*"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}