Microdata.reveal
Detects and presents the microdata embedded in a given page.
Qu'est-ce que Microdata.reveal ?
Microdata.reveal est une extension Chrome développée par jcdarwin, et sa fonction principale est "Detects and presents the microdata embedded in a given page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Microdata.reveal
Téléchargez les fichiers d'extension Microdata.reveal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | olapakiakkblfdaajcifgldandnikpdh |
URL Officiel | https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh |
Description | Detects and presents the microdata embedded in a given page. |
Taille du Fichier | 326 KB |
Nombre d'Installations | 2,825 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2012-10-02 |
Date de Publication | 2012-10-02 |
Évaluation | 3.59/5 Total 29 Évaluations |
Développeur | jcdarwin |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/cwa-lml/microdata.reveal |
URL de la Page d'Aide | https://github.com/cwa-lml/microdata.reveal |
Langues Prises en Charge | 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:\/\/*\/*" ] } |