Microformats Reader
Displays microformat data from the active page
O que é Microformats Reader?
Microformats Reader é uma extensão do Chrome desenvolvida por Michael Beaton, e sua principal característica é "Displays microformat data from the active page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Microformats Reader
Baixe arquivos de extensão Microformats Reader 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
Microformats Reader brings the Indieweb to the surface! This extension parses the webpages you visit to find specially tagged data such as h-cards, rel=me links, and webmention endpoints, then displays that content in a useful, readable and consistent format. Currently supported data: - Webmention endpoints - rel=me, rel=pgpkey links - h-cards - h-entries ...and more coming soon! This is an open source project: https://github.com/beatonma/microformats-reader Thanks to contributors: - David Millar (https://github.com/davmillar)
Informações Básicas da Extensão
Nome | Microformats Reader |
ID | phphllmalbniljekjimmalackdppmoif |
URL Oficial | https://chromewebstore.google.com/detail/microformats-reader/phphllmalbniljekjimmalackdppmoif |
Descrição | Displays microformat data from the active page |
Tamanho do Arquivo | 113 KB |
Contagem de Instalações | 171 |
Versão Atual | 0.5 |
Última Atualização | 2018-11-04 |
Data de Publicação | 2018-11-04 |
Classificação | 4.00/5 Total de 2 Avaliações |
Desenvolvedor | Michael Beaton |
Tipo de Pagamento | free |
Site da Extensão | https://beatonma.org/app/microformats-reader |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Microformats Reader", "version": "0.5", "description": "Displays microformat data from the active page", "author": "Michael Beaton", "icons": { "16": "images\/branding\/ext_icon-16.png", "32": "images\/branding\/ext_icon-32.png", "48": "images\/branding\/ext_icon-48.png", "96": "images\/branding\/ext_icon-96.png", "128": "images\/branding\/ext_icon-128.png" }, "default_locale": "en", "permissions": [ "tabs", "storage", "http:\/\/*\/", "https:\/\/*\/" ], "web_accessible_resources": [], "browser_action": { "default_popup": "popup.html" }, "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "background": { "scripts": [ "js\/background.min.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "js": [ "js\/content.min.js" ], "run_at": "document_end" } ], "homepage_url": "https:\/\/beatonma.org\/app\/microformats-reader" } |