Vue.js find components

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

Co to jest Vue.js find components?

Vue.js find components to rozszerzenie Chrome opracowane przez lukaw, a jego główną funkcją jest „Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Vue.js find components

Pobierz pliki rozszerzeń Vue.js find components w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Vue.js find components Vue.js find components
ID cpghcnolkpibahdpidfopplkdmckpcck
Oficjalny URL https://chromewebstore.google.com/detail/vuejs-find-components/cpghcnolkpibahdpidfopplkdmckpcck
Opis Adds global helper function for finding Vue components (window.vueFind = querySelector for VDOM)
Rozmiar pliku 16.3 KB
Liczba instalacji 104
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2021-12-06
Data Publikacji 2019-07-08
Deweloper lukaw
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lukaw3d/Vue.js-find-components-extension
Obsługiwane Języki 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';"
    }
}