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.”。
擴展截圖
下載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
擴展基本資訊
名稱 | |
ID | filcobblndaenakhejinpjdblekilpgn |
官方網址 | 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 } ] } |