trackerboxd
Adds torrent search shortcuts to Letterboxd
trackerboxdとは何ですか?
trackerboxdはbozo22によって開発されたChromeの拡張機能で、その主な機能は「Adds torrent search shortcuts to Letterboxd」です。
拡張機能のスクリーンショット
trackerboxd拡張機能のCRXファイルをダウンロード
trackerboxd拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Before using, go to the extension settings and select the trackers you want to use. By default, no options are selected. This extension is open source. Feel free to contribute! https://github.com/bozo22/trackerboxd
拡張機能の基本情報
名前 | trackerboxd |
ID | jclinmfmhfdebkgfjojegbcnnhdfpfed |
公式URL | https://chromewebstore.google.com/detail/trackerboxd/jclinmfmhfdebkgfjojegbcnnhdfpfed |
説明 | Adds torrent search shortcuts to Letterboxd |
ファイルサイズ | 110 KB |
インストール数 | 179 |
現在のバージョン | 1.5.5 |
最終更新日 | 2023-12-04 |
公開日 | 2021-06-12 |
評価 | 3.75/5 合計 4 レビュー |
開発者 | bozo22 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "trackerboxd", "version": "1.5.5", "description": "Adds torrent search shortcuts to Letterboxd", "icons": { "128": "icon.png", "512": "icon512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.letterboxd.com\/film\/*" ], "js": [ "trackerboxd.js" ] } ], "options_ui": { "page": "options.html" }, "permissions": [ "storage", "*:\/\/*.letterboxd.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_title": "trackerboxd", "default_popup": "options.html" }, "browser_specific_settings": { "gecko": { "id": "{df85b502-bef7-45a0-a9b3-dbcc57927a3d}" } }, "web_accessible_resources": [ "trackers.json" ] } |