Moxfield Highlighter

Adds additional functionality to the highlighter tool in Moxfield

什麼是Moxfield Highlighter?

Moxfield Highlighter是由HeadAdmiral開發的Chrome擴展程式,該擴展的主要功能是“Adds additional functionality to the highlighter tool in Moxfield”。

擴展截圖

screenshot

下載Moxfield Highlighter擴展crx文件

下載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
官方網址 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"
    }
}