Fast Forward Speed Control

Control the playback speed of videos beyond standard limits.

Vad är Fast Forward Speed Control?

Fast Forward Speed Control är en Chrome-tillägg utvecklad av ervikth, och dess huvudfunktion är "Control the playback speed of videos beyond standard limits.".

Tilläggsskärmbilder

screenshot

Ladda ner Fast Forward Speed Control-förlängningens CRX-fil

Ladda ner Fast Forward Speed Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Quick Guide:
To increase speed: Click '>>' or scroll up
To decrease speed: Click '<<' or scroll down

Take control of video playback speeds effortlessly with our extension, surpassing the standard 2x limit with a mere icon click or a scroll. Designed to be lightweight and intuitive, it offers seamless speed adjustments for an uninterrupted viewing experience, free from obtrusive controls                    

Grundläggande Information om Tillägg

Namn Fast Forward Speed Control Fast Forward Speed Control
ID onphnbdaloaeamdhncmepiklcplinpke
Officiell webbadress https://chromewebstore.google.com/detail/fast-forward-speed-contro/onphnbdaloaeamdhncmepiklcplinpke
Beskrivning Control the playback speed of videos beyond standard limits.
Filstorlek 21.68 KB
Antal Installationer 7,255
Aktuell Version 1.60
Senast Uppdaterad 2024-01-22
Publiceringsdatum 2016-07-23
Betyg 4.27/5 Totalt 11 Betyg
Utvecklare ervikth
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Ervikth
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fast Forward Speed Control",
    "version": "1.60",
    "description": "Control the playback speed of videos beyond standard limits.",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}