Moxfield Highlighter

Adds additional functionality to the highlighter tool in Moxfield

Что такое Moxfield Highlighter?

Moxfield Highlighter - это расширение Chrome, разработанное HeadAdmiral, и его основная функция - "Adds additional functionality to the highlighter tool in Moxfield".

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

screenshot

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

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

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

                        This extension allows you to use the highlighter tool to search the cards in your deck. If you search for o:draw, every card that has the word "draw" in its text will be highlighted in blue.                    

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

Название Moxfield Highlighter Moxfield Highlighter
ID ibnpndghkfdigghjeefcilhdagiepedn
Официальный URL https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn
Описание Adds additional functionality to the highlighter tool in Moxfield
Размер файла 107 KB
Количество установок 27
Текущая Версия 0.0.0.1
Последнее Обновление 2021-08-04
Дата публикации 2021-08-03
Разработчик HeadAdmiral
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Moxfield Highlighter",
    "description": "Adds additional functionality to the highlighter tool in Moxfield",
    "version": "0.0.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.moxfield.com\/decks\/*"
            ],
            "run_at": "document_end",
            "css": [
                "styles.css"
            ],
            "js": [
                "moxfield.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}