Chrome playback speed controller

Controls the playback speed of your youtube or udemy video

Qu'est-ce que Chrome playback speed controller ?

Chrome playback speed controller est une extension Chrome développée par Jean Sidharta, et sa fonction principale est "Controls the playback speed of your youtube or udemy video".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrome playback speed controller

Téléchargez les fichiers d'extension Chrome playback speed controller 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

                        If the current tab is not a Youtube or Udemy video, the extension icon will appear grayed-out and will be disabled. Otherwise, clicking it will display a pop-up with a number, a slider and a button named "reset":

- The number displays the current video speed. It will change according to the slider. If you desire a specific speed, you may manually type the number you want. It's maximum precision, however is of 0.1. More decimal numbers will be rounded.

- The slider controls the video speed, going from 0.0 to 15.9

- The reset button will set the video speed to 1.0                    

Informations de Base sur l'Extension

Nom Chrome playback speed controller Chrome playback speed controller
ID jjapmdbeieeoeaebndobpmjfckbimhon
URL Officiel https://chromewebstore.google.com/detail/chrome-playback-speed-con/jjapmdbeieeoeaebndobpmjfckbimhon
Description Controls the playback speed of your youtube or udemy video
Taille du Fichier 62.85 KB
Nombre d'Installations 891
Version Actuelle 1.2.1
Dernière Mise à Jour 2019-06-05
Date de Publication 2019-06-04
Évaluation 3.71/5 Total 7 Évaluations
Développeur Jean Sidharta
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Jeansidharta/Youtube-Playback-speed-extension
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome playback speed controller",
    "description": "Controls the playback speed of your youtube or udemy video",
    "version": "1.2.1",
    "author": "Jean Sidharta Rocha Guzman",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "injectedYoutube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.udemy.com\/*"
            ],
            "js": [
                "injectedUdemy.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "24": "images\/logo24.png",
            "32": "images\/logo32.png",
            "128": "images\/logo128.png"
        },
        "default_title": "Youtube playback speed",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "images\/logo16.png",
        "24": "images\/logo24.png",
        "32": "images\/logo32.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}