Moxfield Highlighter
Adds additional functionality to the highlighter tool in Moxfield
什么是Moxfield Highlighter?
Moxfield Highlighter是由HeadAdmiral开发的Chrome扩展程序,该扩展的主要功能是“Adds additional functionality to the highlighter tool in Moxfield”。
扩展截图
下载Moxfield Highlighter扩展crx文件
下载Moxfield Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Moxfield Highlighter |
ID | ibnpndghkfdigghjeefcilhdagiepedn |
官方URL | https://chromewebstore.google.com/detail/moxfield-highlighter/ibnpndghkfdigghjeefcilhdagiepedn |
简介 | Adds additional functionality to the highlighter tool in Moxfield |
文件大小 | 107 KB |
安装次数 | 27 |
当前版本 | 0.0.0.1 |
更新时间 | 2021-08-04 |
上架时间 | 2021-08-03 |
开发者 | HeadAdmiral |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |