Video Controls for TikTok
Displays player controls for video content on TikTok.
Video Controls for TikTok क्या है?
Video Controls for TikTok https://georgemike.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays player controls for video content on TikTok."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Controls for TikTok एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |