Video Controls for TikTok

Displays player controls for video content on TikTok.

Apa itu Video Controls for TikTok?

Video Controls for TikTok adalah ekstensi Chrome yang dikembangkan oleh https://georgemike.com, dan fitur utamanya adalah "Displays player controls for video content on TikTok.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Video Controls for TikTok

Unduh file ekstensi Video Controls for TikTok dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Video Controls for TikTok Video Controls for TikTok
ID epmobcfgbmjijkhpimkmjhelcjkdfcoj
URL Resmi https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj
Deskripsi Displays player controls for video content on TikTok.
Ukuran File 306 KB
Jumlah Instalasi 1,025
Versi Saat Ini 1.0.6
Terakhir Diperbarui 2024-02-09
Tanggal Publikasi 2020-06-07
Penilaian 3.91/5 Total 11 Penilaian
Pengembang https://georgemike.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.georgemike.com/
URL Halaman Bantuan https://www.georgemike.com/
URL Halaman Kebijakan Privasi https://www.georgemike.com/chrome/privacypolicy
Bahasa yang Didukung 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\/*"
    ]
}