YouTabMan
A Web Extension used to control all of your YouTube tabs.
什麼是YouTabMan?
YouTabMan是由Theenadayalan開發的Chrome擴展程式,該擴展的主要功能是“A Web Extension used to control all of your YouTube tabs.”。
擴展截圖
下載YouTabMan擴展crx文件
下載YouTabMan擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
YouTabMan is a Web Extension to control all of your currently running Youtube videos at one place.
v1.3.2
- Pause button label name change fix
v1.3.0
- Migrated to VueJs framework
- Added loop button
- Hover next button view the next song
v1.2.0 - 1.2.3
- Search Event Fix
- Internal Fix
- Icon Update
- UI Fix
v1.1.0
- Replay Button Added
v1.0.0
- You will be having Play/Pause/Replay, Next, Mute Control inside YouTabMan.
- You can also able to close the tab if you want to.
- Searching is also possible in YouTabMan 擴展基本資訊
| 名稱 | |
| ID | pfflnpdlbjjkgnelipgknanbnjafijgi |
| 官方網址 | https://chromewebstore.google.com/detail/youtabman/pfflnpdlbjjkgnelipgknanbnjafijgi |
| 簡介 | A Web Extension used to control all of your YouTube tabs. |
| 檔案大小 | 45.28 KB |
| 安裝次數 | 33 |
| 目前版本 | 1.3.2 |
| 更新時間 | 2019-04-02 |
| 上架時間 | 2019-04-02 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | Theenadayalan |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.theenadayalan.me |
| 說明頁面URL | https://github.com/theenadayalank/youtabman |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTabMan",
"version": "1.3.2",
"description": "A Web Extension used to control all of your YouTube tabs.",
"browser_action": {
"default_title": "YouTabMan",
"default_popup": "index.html",
"default_icon": "logo.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"background.js"
]
}
],
"icons": {
"128": "logo.png"
},
"permissions": [
"activeTab",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
]
} | |