YouTube Turbo Button
Sets the video playback speed to a specified amount.
什麼是YouTube Turbo Button?
YouTube Turbo Button是由https://systemcluster.me開發的Chrome擴展程式,該擴展的主要功能是“Sets the video playback speed to a specified amount.”。
擴展截圖
下載YouTube Turbo Button擴展crx文件
下載YouTube Turbo Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Adds a button that sets the playback speed of the current YouTube video to a configurable amount from 0.1x to 10x.
擴展基本資訊
名稱 | YouTube Turbo Button |
ID | bonbclphagmhlcpiahpimimkbmlamenc |
官方網址 | https://chromewebstore.google.com/detail/youtube-turbo-button/bonbclphagmhlcpiahpimimkbmlamenc |
簡介 | Sets the video playback speed to a specified amount. |
檔案大小 | 31.05 KB |
安裝次數 | 2,234 |
目前版本 | 0.1.4 |
更新時間 | 2019-09-30 |
上架時間 | 2019-09-29 |
評分 | 5.00/5 共 3 次評分 |
開發者 | https://systemcluster.me |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Systemcluster/youtube-turbo-button |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Turbo Button", "short_name": "YT Turbo Button", "description": "Sets the video playback speed to a specified amount.", "version": "0.1.4", "author": "Christian Sdunek", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "57.0" } }, "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true, "open_in_tab": false }, "icons": { "48": "chrome\/skin\/icon48.png", "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ], "persistent": true }, "browser_action": { "default_icon": { "48": "chrome\/skin\/icon48.png", "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" } }, "permissions": [ "*:\/\/*.youtube.com\/", "activeTab", "storage", "contextMenus" ] } |