TikTok Controls

Adds the controls and keyboard shortcuts to the video.

Τι είναι το TikTok Controls;

Το TikTok Controls είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον AndRo Marian, και η κύρια λειτουργία του είναι "Adds the controls and keyboard shortcuts to the video.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης TikTok Controls

Λήψη αρχείων επέκτασης TikTok Controls σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        (!) 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\/"
    ]
}