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文件
下载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)                     扩展基本信息
| 名称 |   |  
| 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"
}  |  |