Video Controls for TikTok

Displays player controls for video content on TikTok.

Video Controls for TikTok란 무엇입니까?

Video Controls for TikTok은(는) https://georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays player controls for video content on TikTok."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Video Controls for TikTok 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Video Controls for TikTok Video Controls for TikTok
ID epmobcfgbmjijkhpimkmjhelcjkdfcoj
공식 URL https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj
설명 Displays player controls for video content on TikTok.
파일 크기 306 KB
설치 횟수 1,025
현재 버전 1.0.6
최근 업데이트 2024-02-09
출시 날짜 2020-06-07
평점 3.91/5 총 11 개의 평점
개발자 https://georgemike.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.georgemike.com/
도움말 페이지 URL https://www.georgemike.com/
개인정보 보호 정책 페이지 URL https://www.georgemike.com/chrome/privacypolicy
지원되는 언어 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\/*"
    ]
}