Video Controls for TikTok
Displays player controls for video content on TikTok.
什麼是Video Controls for TikTok?
Video Controls for TikTok是由https://georgemike.com開發的Chrome擴展程式,該擴展的主要功能是“Displays player controls for video content on TikTok.”。
擴展截圖
下載Video Controls for TikTok擴展crx文件
下載Video Controls for TikTok擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } |