Chandlery for Fallen London

Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck

Что такое Chandlery for Fallen London?

Chandlery for Fallen London - это расширение Chrome, разработанное Xan, и его основная функция - "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck".

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

screenshot
screenshot

Скачать файл CRX расширения Chandlery for Fallen London

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

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

                        This is an UNOFFICIAL Chrome extension for Fallen London.
Now updated to the Fallen London redesign.

As long as your Fallen London tab is open, it will monitor and update the tab title with your current number of actions and Opportunity deck cards.

It will also optionally show desktop notifications when your candle or deck are full.

Fallen London © Copyright Failbetter Games

Icon credit: by Icons8 from www.flaticon.com, licensed under CC BY 3.0                    

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

Название Chandlery for Fallen London Chandlery for Fallen London
ID anhebaghddcipcnlgoehajobofkgghje
Официальный URL https://chromewebstore.google.com/detail/chandlery-for-fallen-lond/anhebaghddcipcnlgoehajobofkgghje
Описание Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck
Размер файла 53.77 KB
Количество установок 364
Текущая Версия 1.4
Последнее Обновление 2019-05-03
Дата публикации 2019-05-03
Рейтинг 5.00/5 Всего 11 оценок
Разработчик Xan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://community.failbettergames.com/topic19830-browser-extension-chandlery-for-fallen-london.aspx
URL страницы помощи https://github.com/kav2k/chandlery/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chandlery for Fallen London",
    "short_name": "Chandlery",
    "description": "Unofficial Fallen London extension to keep an eye on your action candle and Opportunities deck",
    "version": "1.4",
    "icons": {
        "16": "img\/icon48.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fallenlondon.com\/*"
            ],
            "js": [
                "js\/lib\/mutation-summary.js",
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/notification.js",
            "js\/storageSync.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "permissions": [
        "storage",
        "notifications",
        "https:\/\/www.fallenlondon.com\/*"
    ],
    "minimum_chrome_version": "50"
}