Microdata.reveal
Detects and presents the microdata embedded in a given page.
Microdata.reveal क्या है?
Microdata.reveal jcdarwin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects and presents the microdata embedded in a given page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Microdata.reveal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension will parse the currently loaded page, and present an icon in the browser address bar when the page contains HTML microdata (green). By clicking on the icon, a popup is displayed showing a tabular view of the microdata, similar to Google’s Rich Snippets tool. The user can also choose to see a JSON representation of the microdata. The code for this extension is available at https://github.com/cwa-lml/microdata.reveal
एक्सटेंशन की मूल जानकारी
नाम | |
ID | olapakiakkblfdaajcifgldandnikpdh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh |
विवरण | Detects and presents the microdata embedded in a given page. |
फ़ाइल का आकार | 326 KB |
स्थापना संख्या | 2,825 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2012-10-02 |
प्रकाशन तिथि | 2012-10-02 |
रेटिंग | 3.59/5 कुल 29 रेटिंग्स |
डेवलपर | jcdarwin |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/cwa-lml/microdata.reveal |
सहायता पृष्ठ URL | https://github.com/cwa-lml/microdata.reveal |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Microdata.reveal", "version": "1.2", "manifest_version": 2, "description": "Detects and presents the microdata embedded in a given page.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon128.png", "default_title": "View microdata", "default_popup": "background.html" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "microdata.reveal.css", "lib\/messi\/messi.min.css" ], "js": [ "lib\/jquery-1.6.4.min.js", "lib\/json2.js", "lib\/microdatajs\/jquery.microdata.js", "lib\/microdatajs\/jquery.microdata.json.js", "lib\/json-template.js", "lib\/messi\/messi.min.js", "microdata.reveal.js", "tmpl.microdata.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "lib\/messi\/messi.min.css", "icon_inactive16.png", "icon_inactive48.png", "icon_inactive128.png" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |