Video Controls for TikTok
Displays player controls for video content on TikTok.
Cos'è Video Controls for TikTok?
Video Controls for TikTok è un'estensione di Chrome sviluppata da https://georgemike.com, e la sua funzione principale è "Displays player controls for video content on TikTok.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Controls for TikTok
Scarica i file di estensione Video Controls for TikTok in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Video Controls for TikTok |
ID | epmobcfgbmjijkhpimkmjhelcjkdfcoj |
URL Ufficiale | https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj |
Descrizione | Displays player controls for video content on TikTok. |
Dimensione del File | 306 KB |
Conteggio Installazioni | 1,025 |
Versione Corrente | 1.0.6 |
Ultimo Aggiornamento | 2024-02-09 |
Data di Pubblicazione | 2020-06-07 |
Valutazione | 3.91/5 Totale 11 Valutazioni |
Sviluppatore | https://georgemike.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.georgemike.com/ |
URL della Pagina di Aiuto | https://www.georgemike.com/ |
URL della Pagina della Politica sulla Privacy | https://www.georgemike.com/chrome/privacypolicy |
Lingue Supportate | 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\/*" ] } |