Vue Telescope

Discover Vue.js Websites

什麼是Vue Telescope?

Vue Telescope是由https://vuetelescope.com開發的Chrome擴展程式,該擴展的主要功能是“Discover Vue.js Websites”。

擴展截圖

screenshot
screenshot
screenshot

下載Vue Telescope擴展crx文件

下載Vue Telescope擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Vue Telescope Vue Telescope
ID neaebjphlfplgdhedjdhcnpjkndddbpd
官方網址 https://chromewebstore.google.com/detail/vue-telescope/neaebjphlfplgdhedjdhcnpjkndddbpd
簡介 Discover Vue.js Websites
檔案大小 1.37 MB
安裝次數 10,000
目前版本 1.9.0
更新時間 2023-06-20
上架時間 2020-07-28
評分 4.83/5 共 18 次評分
開發者 https://vuetelescope.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://vuetelescope.com
說明頁面URL https://twitter.com/vuetelescope
支援的語言 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": []
        }
    ]
}