Letterboxd Services
Letterboxd extension that provides you torrents for movies.
Co to jest Letterboxd Services?
Letterboxd Services to rozszerzenie Chrome opracowane przez netanel, a jego główną funkcją jest „Letterboxd extension that provides you torrents for movies.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Letterboxd Services
Pobierz pliki rozszerzeń Letterboxd Services w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
adds shortcuts to watch movies from letterboxd. This project is open source: https://github.com/pypp/letterboxd-services
Podstawowe informacje o rozszerzeniu
Nazwa | Letterboxd Services |
ID | bapjnacilodfnmciacfljidhhnbbippn |
Oficjalny URL | https://chromewebstore.google.com/detail/letterboxd-services/bapjnacilodfnmciacfljidhhnbbippn |
Opis | Letterboxd extension that provides you torrents for movies. |
Rozmiar pliku | 11.38 KB |
Liczba instalacji | 50 |
Aktualna Wersja | 0.6 |
Ostatnia Aktualizacja | 2024-02-07 |
Data Publikacji | 2023-08-13 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | netanel |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/1netanel/letterboxd-services |
Adres URL Strony Pomocy | https://github.com/1netanel/letterboxd-services/issues |
Obsługiwane Języki | 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" ] } ] } |