Video Controls for TikTok

Displays player controls for video content on TikTok.

Video Controls for TikTok là gì?

Video Controls for TikTok là một tiện ích mở rộng Chrome được phát triển bởi https://georgemike.com, và tính năng chính của nó là "Displays player controls for video content on TikTok.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Controls for TikTok

Tải xuống các tệp mở rộng Video Controls for TikTok dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Controls for TikTok Video Controls for TikTok
ID epmobcfgbmjijkhpimkmjhelcjkdfcoj
URL Chính Thức https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj
Mô tả Displays player controls for video content on TikTok.
Kích Thước Tệp 306 KB
Số Lần Cài Đặt 1,025
Phiên Bản Hiện Tại 1.0.6
Cập Nhật Lần Cuối 2024-02-09
Ngày Phát Hành 2020-06-07
Đánh Giá 3.91/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://georgemike.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.georgemike.com/
URL Trang Trợ Giúp https://www.georgemike.com/
URL Trang Chính Sách Bảo Mật https://www.georgemike.com/chrome/privacypolicy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}