Microdata.reveal
Detects and presents the microdata embedded in a given page.
O que é Microdata.reveal?
Microdata.reveal é uma extensão do Chrome desenvolvida por jcdarwin, e sua principal característica é "Detects and presents the microdata embedded in a given page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Microdata.reveal
Baixe arquivos de extensão Microdata.reveal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | olapakiakkblfdaajcifgldandnikpdh |
URL Oficial | https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh |
Descrição | Detects and presents the microdata embedded in a given page. |
Tamanho do Arquivo | 326 KB |
Contagem de Instalações | 2,825 |
Versão Atual | 1.2 |
Última Atualização | 2012-10-02 |
Data de Publicação | 2012-10-02 |
Classificação | 3.59/5 Total de 29 Avaliações |
Desenvolvedor | jcdarwin |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/cwa-lml/microdata.reveal |
URL da Página de Ajuda | https://github.com/cwa-lml/microdata.reveal |
Idiomas Suportados | 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:\/\/*\/*" ] } |