Speak Faster

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

Qu'est-ce que Speak Faster ?

Speak Faster est une extension Chrome développée par viktor.vesely.vv, et sa fonction principale est "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Speak Faster

Téléchargez les fichiers d'extension Speak Faster au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL Officiel 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!
Taille du Fichier 66.61 KB
Nombre d'Installations 74
Version Actuelle 1.3
Dernière Mise à Jour 2020-05-01
Date de Publication 2020-05-01
Évaluation 5.00/5 Total 1 Évaluations
Développeur viktor.vesely.vv
Type de Paiement free
URL de la Page d'Aide https://github.com/viktorvesely/speakFaster
Langues Prises en Charge 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"
            ]
        }
    ]
}