Vue.js find components
Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)
什么是Vue.js find components?
Vue.js find components是由lukaw开发的Chrome扩展程序,该扩展的主要功能是“Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)”。
扩展截图
下载Vue.js find components扩展crx文件
下载Vue.js find components扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds global helper function for finding Vue components
window.vueFind ~= querySelector for VDOM
window.vueFindAll ~= querySelectorAll for VDOM
window.vueFind('Card CardDialog[model=isCardDialogVisible]').model
- Simple selectors:
`window.vueFind('missing')` prints a warning with a tree of supported simple selectors
- Attribute selectors:
only `[attr=fullvalue]` and `[attr="full value"]` operators are supported
- Combinators:
simple selectors can only be combined with a descendant combinator (a space) 扩展基本信息
| 名称 | |
| ID | cpghcnolkpibahdpidfopplkdmckpcck |
| 官方URL | https://chromewebstore.google.com/detail/vuejs-find-components/cpghcnolkpibahdpidfopplkdmckpcck |
| 简介 | Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM) |
| 文件大小 | 16.3 KB |
| 安装次数 | 104 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2021-12-06 |
| 上架时间 | 2019-07-08 |
| 开发者 | lukaw |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lukaw3d/Vue.js-find-components-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "0.1.0",
"name": "Vue.js find components",
"short_name": "Vue.js find",
"description": "Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)",
"icons": {
"32": "icon32.png",
"128": "icon128.png",
"192": "icon192.png"
},
"devtools_page": ".\/devtools.html",
"content_security_policy": {
"extension_pages": "default-src 'none'; script-src 'self';"
}
} | |