Letterboxd Services

Letterboxd extension that provides you torrents for movies.

Was ist Letterboxd Services?

Letterboxd Services ist eine Chrome-Erweiterung, die von netanel entwickelt wurde, und ihr Hauptmerkmal ist "Letterboxd extension that provides you torrents for movies.".

Erweiterungsscreenshots

screenshot

Letterboxd Services-Erweiterungs-CRX-Datei herunterladen

Laden Sie Letterboxd Services-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        adds shortcuts to watch movies from letterboxd.

This project is open source:
https://github.com/pypp/letterboxd-services                    

Grundlegende Informationen zur Erweiterung

Name Letterboxd Services Letterboxd Services
ID bapjnacilodfnmciacfljidhhnbbippn
Offizielle URL https://chromewebstore.google.com/detail/letterboxd-services/bapjnacilodfnmciacfljidhhnbbippn
Beschreibung Letterboxd extension that provides you torrents for movies.
Dateigröße 11.38 KB
Installationsanzahl 50
Aktuelle Version 0.6
Letztes Update 2024-02-07
Veröffentlichungsdatum 2023-08-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler netanel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/1netanel/letterboxd-services
Hilfeseite URL https://github.com/1netanel/letterboxd-services/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}