Vue Telescope

Discover Vue.js Websites

Vue Telescope là gì?

Vue Telescope là một tiện ích mở rộng Chrome được phát triển bởi https://vuetelescope.com, và tính năng chính của nó là "Discover Vue.js Websites".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Vue Telescope 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

                        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.                    

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

Tên Vue Telescope Vue Telescope
ID neaebjphlfplgdhedjdhcnpjkndddbpd
URL Chính Thức https://chromewebstore.google.com/detail/vue-telescope/neaebjphlfplgdhedjdhcnpjkndddbpd
Mô tả Discover Vue.js Websites
Kích Thước Tệp 1.37 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.9.0
Cập Nhật Lần Cuối 2023-06-20
Ngày Phát Hành 2020-07-28
Đánh Giá 4.83/5 Tổng số 18 Đánh Giá
Nhà Phát Triển https://vuetelescope.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vuetelescope.com
URL Trang Trợ Giúp https://twitter.com/vuetelescope
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}