Fallen London Item Search

This extension adds item and quality search to the 'Myself' tab in Fallen London.

Что такое Fallen London Item Search?

Fallen London Item Search - это расширение Chrome, разработанное Gallmarch Industries, и его основная функция - "This extension adds item and quality search to the 'Myself' tab in Fallen London.".

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

screenshot
screenshot

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

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

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

                        This unofficial extension for Fallen London allows you to search by name for items and qualities in the 'Myself' tab. It offers the same functionality for qualities and items in the scrapbook and mantelpiece dialogs, too.

v. 1.4.2: Minor bugfix.

v. 1.4: You can optionally search the descriptions of items and qualities as well as their names.

v. 1.3: You can now search for qualities in the 'Myself' tab.

v. 1.2: You can now toggle each search field on and off by clicking on the extension's icon.                    

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

Название Fallen London Item Search Fallen London Item Search
ID jmldnifgockhcidgdinhbfciiphkamkl
Официальный URL https://chromewebstore.google.com/detail/fallen-london-item-search/jmldnifgockhcidgdinhbfciiphkamkl
Описание This extension adds item and quality search to the 'Myself' tab in Fallen London.
Размер файла 47.96 KB
Количество установок 70
Текущая Версия 1.4.2
Последнее Обновление 2017-05-07
Дата публикации 2017-05-07
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Gallmarch Industries
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fallen London Item Search",
    "description": "This extension adds item and quality search to the 'Myself' tab in Fallen London.",
    "version": "1.4.2",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/fallenlondon.storynexus.com\/Gap\/Load*"
            ],
            "css": [
                "flis-styles.css",
                "popup.css"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "mutation-summary.js",
                "flis-extension.js"
            ],
            "run_at": "document_end"
        }
    ]
}