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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Speak Faster एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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