Microformats Reader

Displays microformat data from the active page

Microformats Reader क्या है?

Microformats Reader Michael Beaton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays microformat data from the active page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Microformats Reader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
}