Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
O que é Moxfield Highlighter?
Moxfield Highlighter é uma extensão do Chrome desenvolvida por HeadAdmiral, e sua principal característica é "Adds additional functionality to the highlighter tool in Moxfield".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Moxfield Highlighter
Baixe arquivos de extensão Moxfield Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Moxfield Highlighter |
ID | ibnpndghkfdigghjeefcilhdagiepedn |
URL Oficial | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
Descrição | Adds additional functionality to the highlighter tool in Moxfield |
Tamanho do Arquivo | 107 KB |
Contagem de Instalações | 27 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2021-08-04 |
Data de Publicação | 2021-08-03 |
Desenvolvedor | HeadAdmiral |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |