trackerboxd
Adds torrent search shortcuts to Letterboxd
ما هو trackerboxd؟
trackerboxd هو إضافة Chrome تم تطويرها بواسطة bozo22، والميزة الرئيسية لها هي "Adds torrent search shortcuts to Letterboxd".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة trackerboxd
قم بتنزيل ملفات الامتداد trackerboxd بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |