ToggleVideoProgressBars
Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo
什麼是ToggleVideoProgressBars?
ToggleVideoProgressBars是由rossjgosling開發的Chrome擴展程式,該擴展的主要功能是“Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo”。
擴展截圖
下載ToggleVideoProgressBars擴展crx文件
下載ToggleVideoProgressBars擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Provides a context menu button, as well as a standard browser icon button, that when pressed toggles the visibility of progress bars and displayed time for various video players!
Supports YouTube, Netflix, Amazon, and Vimeo
Firefox Version: https://addons.mozilla.org/en-GB/firefox/addon/togglevideoprogressbars/ 擴展基本資訊
| 名稱 | |
| ID | hmenobknlandacpmndhikkcijdkpaccm |
| 官方網址 | https://chromewebstore.google.com/detail/togglevideoprogressbars/hmenobknlandacpmndhikkcijdkpaccm |
| 簡介 | Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo |
| 檔案大小 | 14.85 KB |
| 安裝次數 | 29 |
| 目前版本 | 1.0.5 |
| 更新時間 | 2022-03-30 |
| 上架時間 | 2020-06-01 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | rossjgosling |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/RossGosling-Github/ToggleVideoProgressBars |
| 說明頁面URL | https://github.com/RossGosling-Github/ToggleVideoProgressBars/issues |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "ToggleVideoProgressBars",
"version": "1.0.5",
"description": "Adds the ability to toggle visibility of progress bars etc for various video players! Supports YouTube, Netflix, Amazon, and Vimeo",
"icons": {
"16": "icon\/main.png",
"32": "icon\/main.png",
"64": "icon\/main.png",
"128": "icon\/main.png"
},
"browser_action": {
"default_icon": {
"128": "icon\/visible.png"
},
"browser_style": true,
"default_title": "ToggleVideoProgressBars Toggle"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"include_globs": [
"http*:\/\/*youtube.*",
"http*:\/\/*youtu.be*",
"http*:\/\/*netflix.*",
"http*:\/\/*amazon.*",
"http*:\/\/*vimeo.*"
],
"js": [
"src\/common.js",
"src\/document.js"
]
}
],
"background": {
"scripts": [
"src\/common.js",
"src\/background.js"
]
},
"web_accessible_resources": [
"style\/*.css"
],
"permissions": [
"storage",
"contextMenus",
" | |