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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}