Web Components

Identify all Custom Elements used on a site.

Web Components là gì?

Web Components là một tiện ích mở rộng Chrome được phát triển bởi Zeno Rocha, và tính năng chính của nó là "Identify all Custom Elements used on a site.".

Ả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 Web Components

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

                        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                    

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

Tên Web Components Web Components
ID filcobblndaenakhejinpjdblekilpgn
URL Chính Thức https://chrome.google.com/webstore/detail/web-components/filcobblndaenakhejinpjdblekilpgn
Mô tả Identify all Custom Elements used on a site.
Kích Thước Tệp 17.1 KB
Số Lần Cài Đặt 30,479
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2014-05-19
Ngày Phát Hành 2014-05-19
Đánh Giá 3.17/5 Tổng số 86 Đánh Giá
Nhà Phát Triển Zeno Rocha
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}