Vue Telescope

Discover Vue.js Websites

Vue Telescopeคืออะไร?

Vue Telescope เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vuetelescope.com และคุณลักษณะหลักของมันคือ "Discover Vue.js Websites"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vue Telescope

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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": []
        }
    ]
}