Letterboxd Services

Letterboxd extension that provides you torrents for movies.

Что такое Letterboxd Services?

Letterboxd Services - это расширение Chrome, разработанное netanel, и его основная функция - "Letterboxd extension that provides you torrents for movies.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Letterboxd Services

Скачайте файлы расширений Letterboxd Services в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        adds shortcuts to watch movies from letterboxd.

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

Основная информация о расширении

Название Letterboxd Services Letterboxd Services
ID bapjnacilodfnmciacfljidhhnbbippn
Официальный URL https://chromewebstore.google.com/detail/letterboxd-services/bapjnacilodfnmciacfljidhhnbbippn
Описание Letterboxd extension that provides you torrents for movies.
Размер файла 11.38 KB
Количество установок 50
Текущая Версия 0.6
Последнее Обновление 2024-02-07
Дата публикации 2023-08-13
Рейтинг 5.00/5 Всего 1 оценок
Разработчик netanel
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/1netanel/letterboxd-services
URL страницы помощи https://github.com/1netanel/letterboxd-services/issues
Поддерживаемые языки 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"
            ]
        }
    ]
}