Moxfield Highlighter

Adds additional functionality to the highlighter tool in Moxfield

Wat is Moxfield Highlighter?

Moxfield Highlighter is een Chrome-extensie ontwikkeld door HeadAdmiral, en de belangrijkste functie is "Adds additional functionality to the highlighter tool in Moxfield".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Moxfield Highlighter

Download Moxfield Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Moxfield Highlighter Moxfield Highlighter
ID ibnpndghkfdigghjeefcilhdagiepedn
Officiële URL https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn
Beschrijving Adds additional functionality to the highlighter tool in Moxfield
Bestandsgrootte 107 KB
Aantal Installaties 27
Huidige Versie 0.0.0.1
Laatst Bijgewerkt 2021-08-04
Publicatiedatum 2021-08-03
Ontwikkelaar HeadAdmiral
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}