Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
Qu'est-ce que Moxfield Highlighter ?
Moxfield Highlighter est une extension Chrome développée par HeadAdmiral, et sa fonction principale est "Adds additional functionality to the highlighter tool in Moxfield".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Moxfield Highlighter
Téléchargez les fichiers d'extension Moxfield Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Moxfield Highlighter |
ID | ibnpndghkfdigghjeefcilhdagiepedn |
URL Officiel | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
Description | Adds additional functionality to the highlighter tool in Moxfield |
Taille du Fichier | 107 KB |
Nombre d'Installations | 27 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2021-08-04 |
Date de Publication | 2021-08-03 |
Développeur | HeadAdmiral |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |