Microformats Reader
Displays microformat data from the active page
Что такое Microformats Reader?
Microformats Reader - это расширение Chrome, разработанное Michael Beaton, и его основная функция - "Displays microformat data from the active page".
Снимки экрана расширения
Скачать файл CRX расширения Microformats Reader
Скачайте файлы расширений Microformats Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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)
Основная информация о расширении
Название | Microformats Reader |
ID | phphllmalbniljekjimmalackdppmoif |
Официальный URL | https://chromewebstore.google.com/detail/microformats-reader/phphllmalbniljekjimmalackdppmoif |
Описание | Displays microformat data from the active page |
Размер файла | 113 KB |
Количество установок | 171 |
Текущая Версия | 0.5 |
Последнее Обновление | 2018-11-04 |
Дата публикации | 2018-11-04 |
Рейтинг | 4.00/5 Всего 2 оценок |
Разработчик | Michael Beaton |
Тип оплаты | free |
Официальный сайт расширения | https://beatonma.org/app/microformats-reader |
Поддерживаемые языки | 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" } |