trackerboxd
Adds torrent search shortcuts to Letterboxd
What is trackerboxd?
trackerboxd is a Chrome extension developed by bozo22, and its main feature is "Adds torrent search shortcuts to Letterboxd".
Extension Screenshots
Download trackerboxd Extension CRX File
Download trackerboxd extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | trackerboxd |
ID | jclinmfmhfdebkgfjojegbcnnhdfpfed |
Official URL | https://chromewebstore.google.com/detail/trackerboxd/jclinmfmhfdebkgfjojegbcnnhdfpfed |
Description | Adds torrent search shortcuts to Letterboxd |
File Size | 110 KB |
Installation Count | 179 |
Current Version | 1.5.5 |
Last Updated | 2023-12-04 |
Publish Date | 2021-06-12 |
Rating | 3.75/5 Total 4 Ratings |
Developer | bozo22 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |