Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
Vad är Moxfield Highlighter?
Moxfield Highlighter är en Chrome-tillägg utvecklad av HeadAdmiral, och dess huvudfunktion är "Adds additional functionality to the highlighter tool in Moxfield".
Tilläggsskärmbilder
Ladda ner Moxfield Highlighter-förlängningens CRX-fil
Ladda ner Moxfield Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Moxfield Highlighter |
ID | ibnpndghkfdigghjeefcilhdagiepedn |
Officiell webbadress | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
Beskrivning | Adds additional functionality to the highlighter tool in Moxfield |
Filstorlek | 107 KB |
Antal Installationer | 27 |
Aktuell Version | 0.0.0.1 |
Senast Uppdaterad | 2021-08-04 |
Publiceringsdatum | 2021-08-03 |
Utvecklare | HeadAdmiral |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |