Letterboxd Services
Letterboxd extension that provides you torrents for movies.
Vad är Letterboxd Services?
Letterboxd Services är en Chrome-tillägg utvecklad av netanel, och dess huvudfunktion är "Letterboxd extension that provides you torrents for movies.".
Tilläggsskärmbilder
Ladda ner Letterboxd Services-förlängningens CRX-fil
Ladda ner Letterboxd Services-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
adds shortcuts to watch movies from letterboxd. This project is open source: https://github.com/pypp/letterboxd-services
Grundläggande Information om Tillägg
Namn | Letterboxd Services |
ID | bapjnacilodfnmciacfljidhhnbbippn |
Officiell webbadress | https://chromewebstore.google.com/detail/letterboxd-services/bapjnacilodfnmciacfljidhhnbbippn |
Beskrivning | Letterboxd extension that provides you torrents for movies. |
Filstorlek | 11.38 KB |
Antal Installationer | 50 |
Aktuell Version | 0.6 |
Senast Uppdaterad | 2024-02-07 |
Publiceringsdatum | 2023-08-13 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | netanel |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/1netanel/letterboxd-services |
Hjälpsida URL | https://github.com/1netanel/letterboxd-services/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Letterboxd Services", "description": "Letterboxd extension that provides you torrents for movies.", "version": "0.6", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules_1.json" } ] }, "permissions": [ "declarativeNetRequest", "declarativeNetRequestFeedback" ], "host_permissions": [ "https:\/\/letterboxd.com\/film\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/letterboxd.com\/film\/*" ], "js": [ "src\/content.js", "src\/services.js" ] } ] } |