FL Quirk Master

Annotate branches which influence your Quirks.

Что такое FL Quirk Master?

FL Quirk Master - это расширение Chrome, разработанное lensvol, и его основная функция - "Annotate branches which influence your Quirks.".

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

screenshot

Скачать файл CRX расширения FL Quirk Master

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

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

                        Simple extension to annotate Fallen London branch descriptions with warnings about Quirks being affected.

How to use:
1. You need to have an existing Fallen London account
2. Install the extension
3. Enter any storylet that has branches which can influence your Quirks (e.g. "A letter from your aunt" Opportunity Card)
4. You will see bold text added to each branch that describes effect choosing it will have on your Quirks.
5. Enjoy!                    

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

Название FL Quirk Master FL Quirk Master
ID ajkkmlpkfhdcepioapimmhdcgeadkphe
Официальный URL https://chromewebstore.google.com/detail/fl-quirk-master/ajkkmlpkfhdcepioapimmhdcgeadkphe
Описание Annotate branches which influence your Quirks.
Размер файла 46.37 KB
Количество установок 136
Текущая Версия 1.0.4
Последнее Обновление 2023-05-25
Дата публикации 2022-08-16
Разработчик lensvol
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/lensvol/fl-quirk-master
URL страницы помощи https://github.com/lensvol/fl-quirk-master/issues
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FL Quirk Master",
    "description": "Annotate branches which influence your Quirks.",
    "version": "1.0.4",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/www.fallenlondon.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.fallenlondon.com\/*"
            ],
            "js": [
                "quirk_changes.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/fl-quirk-master-icon-16.png",
            "32": "\/images\/fl-quirk-master-icon-32.png",
            "48": "\/images\/fl-quirk-master-icon-48.png",
            "128": "\/images\/fl-quirk-master-icon-128.png"
        }
    },
    "icons": {
        "16": "\/images\/fl-quirk-master-icon-16.png",
        "32": "\/images\/fl-quirk-master-icon-32.png",
        "48": "\/images\/fl-quirk-master-icon-48.png",
        "128": "\/images\/fl-quirk-master-icon-128.png"
    },
    "web_accessible_resources": []
}