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"
    }
}