Video Controls for TikTok
Displays player controls for video content on TikTok.
Wat is Video Controls for TikTok?
Video Controls for TikTok is een Chrome-extensie ontwikkeld door https://georgemike.com, en de belangrijkste functie is "Displays player controls for video content on TikTok.".
Extensie Screenshots
Download het CRX-bestand van de extensie Video Controls for TikTok
Download Video Controls for TikTok-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Video Controls for TikTok |
ID | epmobcfgbmjijkhpimkmjhelcjkdfcoj |
Officiële URL | https://chromewebstore.google.com/detail/video-controls-for-tiktok/epmobcfgbmjijkhpimkmjhelcjkdfcoj |
Beschrijving | Displays player controls for video content on TikTok. |
Bestandsgrootte | 306 KB |
Aantal Installaties | 1,025 |
Huidige Versie | 1.0.6 |
Laatst Bijgewerkt | 2024-02-09 |
Publicatiedatum | 2020-06-07 |
Beoordeling | 3.91/5 Totaal 11 Beoordelingen |
Ontwikkelaar | https://georgemike.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.georgemike.com/ |
Help Pagina-URL | https://www.georgemike.com/ |
URL van de Privacybeleid Pagina | https://www.georgemike.com/chrome/privacypolicy |
Ondersteunde Talen | 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\/*" ] } |