Microformats Reader

Displays microformat data from the active page

Microformats Reader là gì?

Microformats Reader là một tiện ích mở rộng Chrome được phát triển bởi Michael Beaton, và tính năng chính của nó là "Displays microformat data from the active page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Microformats Reader

Tải xuống các tệp mở rộng Microformats Reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Microformats Reader Microformats Reader
ID phphllmalbniljekjimmalackdppmoif
URL Chính Thức https://chromewebstore.google.com/detail/microformats-reader/phphllmalbniljekjimmalackdppmoif
Mô tả Displays microformat data from the active page
Kích Thước Tệp 113 KB
Số Lần Cài Đặt 171
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2018-11-04
Ngày Phát Hành 2018-11-04
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Michael Beaton
Loại Thanh Toán free
Trang Web Mở Rộng https://beatonma.org/app/microformats-reader
Ngôn Ngữ Được Hỗ Trợ 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"
}