TubeArchivist Companion

Interact with your selfhosted TA server.

什么是TubeArchivist Companion?

TubeArchivist Companion是由simobilleter开发的Chrome扩展程序,该扩展的主要功能是“Interact with your selfhosted TA server.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载TubeArchivist Companion扩展crx文件

下载TubeArchivist Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Automatically send links from your Browser to Tube Archivist.                    

扩展基本信息

名称 TubeArchivist Companion TubeArchivist Companion
ID jjnkmicfnfojkkgobdfeieblocadmcie
官方URL 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"
    }
}