Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
What is Moxfield Highlighter?
Moxfield Highlighter is a Chrome extension developed by HeadAdmiral, and its main feature is "Adds additional functionality to the highlighter tool in Moxfield".
Extension Screenshots
Download Moxfield Highlighter Extension CRX File
Download Moxfield Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Moxfield Highlighter |
ID | ibnpndghkfdigghjeefcilhdagiepedn |
Official URL | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
Description | Adds additional functionality to the highlighter tool in Moxfield |
File Size | 107 KB |
Installation Count | 27 |
Current Version | 0.0.0.1 |
Last Updated | 2021-08-04 |
Publish Date | 2021-08-03 |
Developer | HeadAdmiral |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |