Web Components

Identify all Custom Elements used on a site.

Web Componentsคืออะไร?

Web Components เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zeno Rocha และคุณลักษณะหลักของมันคือ "Identify all Custom Elements used on a site."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Web Components ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Web Components are a collection of standards which are working their way through the W3C. One of these specs is called Custom Elements and gives you the ability to create your own HTML elements.

The idea behind this extension is to detect pages that are using it nowadays and show an icon in the address bar when it happens.

Source code available at: https://github.com/webcomponents/chrome-webcomponents-extension                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Components Web Components
ID filcobblndaenakhejinpjdblekilpgn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/web-components/filcobblndaenakhejinpjdblekilpgn
คำอธิบาย Identify all Custom Elements used on a site.
ขนาดไฟล์ 17.1 KB
จำนวนการติดตั้ง 30,479
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2014-05-19
วันที่เผยแพร่ 2014-05-19
คะแนน 3.17/5 รวมทั้งหมด 86 คะแนน
ผู้พัฒนา Zeno Rocha
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Components",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Identify all Custom Elements used on a site.",
    "icons": {
        "16": "img\/logo_16x16.png",
        "48": "img\/logo_48x48.png",
        "128": "img\/logo_128x128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "img\/logo_19x19.png",
            "38": "img\/logo_38x38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}