Microformats Reader

Displays microformat data from the active page

Τι είναι το Microformats Reader;

Το Microformats Reader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Beaton, και η κύρια λειτουργία του είναι "Displays microformat data from the active page".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Microformats Reader

Λήψη αρχείων επέκτασης 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)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 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"
}