Moxfield Highlighter

Adds additional functionality to the highlighter tool in Moxfield

Apa itu Moxfield Highlighter?

Moxfield Highlighter adalah ekstensi Chrome yang dikembangkan oleh HeadAdmiral, dan fitur utamanya adalah "Adds additional functionality to the highlighter tool in Moxfield".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Moxfield Highlighter

Unduh file ekstensi Moxfield Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Moxfield Highlighter Moxfield Highlighter
ID ibnpndghkfdigghjeefcilhdagiepedn
URL Resmi https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn
Deskripsi Adds additional functionality to the highlighter tool in Moxfield
Ukuran File 107 KB
Jumlah Instalasi 27
Versi Saat Ini 0.0.0.1
Terakhir Diperbarui 2021-08-04
Tanggal Publikasi 2021-08-03
Pengembang HeadAdmiral
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}