Moxfield Highlighter

Adds additional functionality to the highlighter tool in Moxfield

Was ist Moxfield Highlighter?

Moxfield Highlighter ist eine Chrome-Erweiterung, die von HeadAdmiral entwickelt wurde, und ihr Hauptmerkmal ist "Adds additional functionality to the highlighter tool in Moxfield".

Erweiterungsscreenshots

screenshot

Moxfield Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Moxfield Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Moxfield Highlighter Moxfield Highlighter
ID ibnpndghkfdigghjeefcilhdagiepedn
Offizielle URL https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn
Beschreibung Adds additional functionality to the highlighter tool in Moxfield
Dateigröße 107 KB
Installationsanzahl 27
Aktuelle Version 0.0.0.1
Letztes Update 2021-08-04
Veröffentlichungsdatum 2021-08-03
Entwickler HeadAdmiral
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}