Microformats Reader
Displays microformat data from the active page
Microformats Reader란 무엇입니까?
Microformats Reader은(는) Michael Beaton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays microformat data from the active page"입니다.
확장 프로그램 스크린샷
Microformats Reader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |