Fallen London Goat Farmer's Extension

This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.

Что такое Fallen London Goat Farmer's Extension?

Fallen London Goat Farmer's Extension - это расширение Chrome, разработанное Gallmarch Industries, и его основная функция - "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.".

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

screenshot

Скачать файл CRX расширения Fallen London Goat Farmer's Extension

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

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

                        This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London. It includes options to exclude certain items from the calculation.

This add-on is listed on the Fallen London Extension Whitelist: http://community.failbettergames.com/topic9506-fallen-london-extensions-whitelist.aspx                    

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

Название Fallen London Goat Farmer's Extension Fallen London Goat Farmer's Extension
ID biefkddpeaninjbkipkgnncpdlbddkfl
Официальный URL https://chromewebstore.google.com/detail/fallen-london-goat-farmer/biefkddpeaninjbkipkgnncpdlbddkfl
Описание This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.
Размер файла 199 KB
Количество установок 915
Текущая Версия 4.0.1
Последнее Обновление 2019-08-07
Дата публикации 2019-08-07
Рейтинг 5.00/5 Всего 17 оценок
Разработчик Gallmarch Industries
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Goat Farmer's Extension",
    "description": "This extension calculates and displays your total wealth each time you visit the Bazaar page in Fallen London.",
    "permissions": [
        "webRequest",
        "storage",
        "*:\/\/*.fallenlondon.com\/"
    ],
    "version": "4.0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fallenlondon.com\/*",
                "https:\/\/.fallenlondon.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}