Web Components
Identify all Custom Elements used on a site.
Web Components क्या है?
Web Components Zeno Rocha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Identify all Custom Elements used on a site."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Web Components एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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 } ] } |