trackerboxd
Adds torrent search shortcuts to Letterboxd
trackerboxdคืออะไร?
trackerboxd เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bozo22 และคุณลักษณะหลักของมันคือ "Adds torrent search shortcuts to Letterboxd"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย trackerboxd
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |