Video Controls for TikTok

Displays player controls for video content on TikTok.

Qu'est-ce que Video Controls for TikTok ?

Video Controls for TikTok est une extension Chrome développée par https://georgemike.com, et sa fonction principale est "Displays player controls for video content on TikTok.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Video Controls for TikTok

Téléchargez les fichiers d'extension Video Controls for TikTok 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

                        Displays player controls for video content on TikTok and makes it easier to download videos too!

Features:
- Keyboard shortcuts to:
  * Play/pause
  * Jump forward/back 5s
  * Increase/decrease the volume of videos
  * Change the playback rate from: .25x - 2x
  * Play videos in pop-out windows.
- Remember and automatically set your last video volume level.
- Auto-advance to the next video in a collection.

Last updated: February 2024                    

Informations de Base sur l'Extension

Nom Video Controls for TikTok Video Controls for TikTok
ID epmobcfgbmjijkhpimkmjhelcjkdfcoj
URL Officiel https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj
Description Displays player controls for video content on TikTok.
Taille du Fichier 306 KB
Nombre d'Installations 1,025
Version Actuelle 1.0.6
Dernière Mise à Jour 2024-02-09
Date de Publication 2020-06-07
Évaluation 3.91/5 Total 11 Évaluations
Développeur https://georgemike.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.georgemike.com/
URL de la Page d'Aide https://www.georgemike.com/
URL de la Page de Politique de Confidentialité https://www.georgemike.com/chrome/privacypolicy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.6",
    "name": "Video Controls for TikTok",
    "short_name": "Video Scrubber",
    "description": "Displays player controls for video content on TikTok.",
    "homepage_url": "https:\/\/georgemike.com",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "default_locale": "en",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/tiktok.com\/*",
                "http:\/\/*.tiktok.com\/*",
                "https:\/\/tiktok.com\/*",
                "https:\/\/*.tiktok.com\/*"
            ],
            "js": [
                "lib\/progress.js-0.1.0\/progress.min.js",
                "js\/ActiveVideoManager.js",
                "js\/Util.js",
                "js\/VideoModifier.js",
                "js\/Config.js",
                "js\/content.js"
            ],
            "css": [
                "lib\/progress.js-0.1.0\/progressjs.min.css",
                "css\/scrub.css"
            ],
            "all_frames": true
        }
    ],
    "host_permissions": [
        "http:\/\/tiktok.com\/*",
        "http:\/\/*.tiktok.com\/*",
        "https:\/\/tiktok.com\/*",
        "https:\/\/*.tiktok.com\/*"
    ]
}