Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
Hvad er Moxfield Highlighter?
Moxfield Highlighter er en Chrome-udvidelse udviklet af HeadAdmiral, og dens hovedfunktion er "Adds additional functionality to the highlighter tool in Moxfield".
Udvidelsesskærmbilleder
Download Moxfield Highlighter-udvidelses-CRX-fil
Download Moxfield Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | ibnpndghkfdigghjeefcilhdagiepedn |
| Officiel URL | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
| Beskrivelse | Adds additional functionality to the highlighter tool in Moxfield |
| Filstørrelse | 107 KB |
| Antal Installationer | 27 |
| Nuværende Version | 0.0.0.1 |
| Senest Opdateret | 2021-08-04 |
| Udgivelsesdato | 2021-08-03 |
| Udvikler | HeadAdmiral |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |