Vue.js find components

Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)

What is Vue.js find components?

Vue.js find components is a Chrome extension developed by lukaw, and its main feature is "Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)".

Extension Screenshots

screenshot
screenshot

Download Vue.js find components Extension CRX File

Download Vue.js find components extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Vue.js find components Vue.js find components
ID cpghcnolkpibahdpidfopplkdmckpcck
Official URL https://chromewebstore.google.com/detail/vuejs-find-components/cpghcnolkpibahdpidfopplkdmckpcck
Description Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)
File Size 16.3 KB
Installation Count 104
Current Version 0.1.0
Last Updated 2021-12-06
Publish Date 2019-07-08
Developer lukaw
Email [email protected]
Payment Type free
Extension Website https://github.com/lukaw3d/Vue.js-find-components-extension
Supported Languages 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';"
    }
}