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 | 
| 官方網址 | 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"
}  |  |