Vue Telescope

Discover Vue.js Websites

Vad är Vue Telescope?

Vue Telescope är en Chrome-tillägg utvecklad av https://vuetelescope.com, och dess huvudfunktion är "Discover Vue.js Websites".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Vue Telescope-förlängningens CRX-fil

Ladda ner Vue Telescope-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Vue Telescope is a utility that uncovers the Vue.js plugins and technology stack used on websites. It detects the Vue version, plugins, frameworks, Nuxt modules and even the UI used.                    

Grundläggande Information om Tillägg

Namn Vue Telescope Vue Telescope
ID neaebjphlfplgdhedjdhcnpjkndddbpd
Officiell webbadress https://chromewebstore.google.com/detail/vue-telescope/neaebjphlfplgdhedjdhcnpjkndddbpd
Beskrivning Discover Vue.js Websites
Filstorlek 1.37 MB
Antal Installationer 10,000
Aktuell Version 1.9.0
Senast Uppdaterad 2023-06-20
Publiceringsdatum 2020-07-28
Betyg 4.83/5 Totalt 18 Betyg
Utvecklare https://vuetelescope.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://vuetelescope.com
Hjälpsida URL https://twitter.com/vuetelescope
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue Telescope",
    "description": "Discover Vue.js Websites",
    "version": "1.9.0",
    "manifest_version": 3,
    "minimum_chrome_version": "102",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon-grey-16.png",
            "48": "icons\/icon-grey-48.png",
            "128": "icons\/icon-grey-128.png"
        },
        "default_title": "Vue Telescope",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "injected.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}