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
Eメール [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"
    }
}