TikTok Controls

Adds the controls and keyboard shortcuts to the video.

TikTok Controls란 무엇입니까?

TikTok Controls은(는) AndRo Marian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the controls and keyboard shortcuts to the video."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        (!) TikTok is changing the layout now. This would work or not.

With this extension you can make the video controls to appear and you can do:
* Play / Pause the video
* Change Volume, Loop and Mute

Controls:
- Seek: Hold CTRL for 1 second, SHIFT for 10 seconds, Default 5
- Volume: Hold CTRL for 5, SHIFT for 10, Default 2

Features:
* Remembers the volume, mute and loop for the next video
* Keyboard shortcuts
* Dark theme

Settings:
* You can change some default settings when opening the video from the extension popup
    - Mute - If the video to be muted
   - Loop - If the video have loop
    - Volume - The video volume
   - Dark theme - The dark theme
   - Mouse shortcuts - Some little mouse shortcuts
   - Volume change - How much volume to add when using the shortcuts
   - Check - The interval for checking the new video

Loud sound sometimes?:
Click on top left speaker over the video to mute it.
You can find it on the bottom right on comments page.
And use my speaker from top bar or the video controls.                    

확장 프로그램 기본 정보

이름 TikTok Controls TikTok Controls
ID okppihekbfengkfogiamchoimpolpplm
공식 URL https://chromewebstore.google.com/detail/tiktok-controls/okppihekbfengkfogiamchoimpolpplm
설명 Adds the controls and keyboard shortcuts to the video.
파일 크기 27.33 KB
설치 횟수 143
현재 버전 0.0.9
최근 업데이트 2021-05-30
출시 날짜 2021-02-21
평점 3.00/5 총 1 개의 평점
개발자 AndRo Marian
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TikTok Controls",
    "description": "Adds the controls and keyboard shortcuts to the video.",
    "author": "Andronachi Marian",
    "version": "0.0.9",
    "icons": {
        "16": "icons\/x16.png",
        "48": "icons\/x48.png",
        "128": "icons\/x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/x16.png",
        "default_popup": "browser\/browser.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tiktok.com\/*"
            ],
            "js": [
                "content\/start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.tiktok.com\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "content\/dark.css"
    ],
    "permissions": [
        "storage",
        "cookies",
        "https:\/\/www.tiktok.com\/"
    ]
}