CNL Decryptor

Decrypts jDownloader Click'N'Load links

Что такое CNL Decryptor?

CNL Decryptor - это расширение Chrome, разработанное Brawl, и его основная функция - "Decrypts jDownloader Click'N'Load links".

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

screenshot

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

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

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

                        Intercepts Click'N'Load requests to jDownloader and shows the plain URLs and password instead.

Just open a Click'N'Load URL and a popup with the decrypted links and the password (if available) will be shown. You can easily copy them there.                    

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

Название CNL Decryptor CNL Decryptor
ID hfmolcaikbnbminafcmeiejglbeelilh
Официальный URL https://chromewebstore.google.com/detail/cnl-decryptor/hfmolcaikbnbminafcmeiejglbeelilh
Описание Decrypts jDownloader Click'N'Load links
Размер файла 53.72 KB
Количество установок 1,399
Текущая Версия 2.1.0
Последнее Обновление 2024-01-22
Дата публикации 2021-02-14
Рейтинг 4.67/5 Всего 12 оценок
Разработчик Brawl
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Brawl345/CNL-decryptor
URL страницы помощи https://github.com/Brawl345/CNL-decryptor/issues
Поддерживаемые языки de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "author": "Andreas Bielawski",
    "version": "2.1.0",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "build\/service-worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "96": "icons\/96.png",
            "128": "icons\/128.png"
        },
        "default_title": "__MSG_extensionName__"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "net_rules",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/web_accessible_resources\/jdcheck.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}