TubeArchivist Companion
Interact with your selfhosted TA server.
什麼是TubeArchivist Companion?
TubeArchivist Companion是由simobilleter開發的Chrome擴展程式,該擴展的主要功能是“Interact with your selfhosted TA server.”。
擴展截圖
下載TubeArchivist Companion擴展crx文件
下載TubeArchivist Companion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically send links from your Browser to Tube Archivist. 擴展基本資訊
| 名稱 | |
| ID | jjnkmicfnfojkkgobdfeieblocadmcie |
| 官方網址 | https://chromewebstore.google.com/detail/tubearchivist-companion/jjnkmicfnfojkkgobdfeieblocadmcie |
| 簡介 | Interact with your selfhosted TA server. |
| 檔案大小 | 44.56 KB |
| 安裝次數 | 1,665 |
| 目前版本 | 0.2.2 |
| 更新時間 | 2023-11-10 |
| 上架時間 | 2022-04-27 |
| 評分 | 5.00/5 共 7 次評分 |
| 開發者 | simobilleter |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/tubearchivist/browser-extension |
| 說明頁面URL | https://github.com/tubearchivist/browser-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TubeArchivist Companion",
"description": "Interact with your selfhosted TA server.",
"version": "0.2.2",
"icons": {
"48": "\/images\/icon.png",
"128": "\/images\/icon128.png"
},
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |