Web Components

Identify all Custom Elements used on a site.

Web Componentsとは何ですか?

Web ComponentsはZeno Rochaによって開発されたChromeの拡張機能で、その主な機能は「Identify all Custom Elements used on a site.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Web Components拡張機能のCRXファイルをダウンロード

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
Eメール [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
        }
    ]
}