Vue.js find components

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

Vue.js find components là gì?

Vue.js find components là một tiện ích mở rộng Chrome được phát triển bởi lukaw, và tính năng chính của nó là "Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vue.js find components

Tải xuống các tệp mở rộng Vue.js find components dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vue.js find components Vue.js find components
ID cpghcnolkpibahdpidfopplkdmckpcck
URL Chính Thức https://chromewebstore.google.com/detail/vuejs-find-components/cpghcnolkpibahdpidfopplkdmckpcck
Mô tả Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)
Kích Thước Tệp 16.3 KB
Số Lần Cài Đặt 104
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2021-12-06
Ngày Phát Hành 2019-07-08
Nhà Phát Triển lukaw
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lukaw3d/Vue.js-find-components-extension
Ngôn Ngữ Được Hỗ Trợ 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';"
    }
}