Microdata.reveal

Detects and presents the microdata embedded in a given page.

Was ist Microdata.reveal?

Microdata.reveal ist eine Chrome-Erweiterung, die von jcdarwin entwickelt wurde, und ihr Hauptmerkmal ist "Detects and presents the microdata embedded in a given page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Microdata.reveal-Erweiterungs-CRX-Datei herunterladen

Laden Sie Microdata.reveal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension will parse the currently loaded page, and present an icon in the browser address bar when the page contains HTML microdata (green).

By clicking on the icon, a popup is displayed showing a tabular view of the microdata, similar to Google’s Rich Snippets tool.

The user can also choose to see a JSON representation of the microdata.

The code for this extension is available at https://github.com/cwa-lml/microdata.reveal                    

Grundlegende Informationen zur Erweiterung

Name Microdata.reveal Microdata.reveal
ID olapakiakkblfdaajcifgldandnikpdh
Offizielle URL https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh
Beschreibung Detects and presents the microdata embedded in a given page.
Dateigröße 326 KB
Installationsanzahl 2,825
Aktuelle Version 1.2
Letztes Update 2012-10-02
Veröffentlichungsdatum 2012-10-02
Bewertung 3.59/5 Insgesamt 29 Bewertungen
Entwickler jcdarwin
Zahlungsart free
Erweiterungswebsite https://github.com/cwa-lml/microdata.reveal
Hilfeseite URL https://github.com/cwa-lml/microdata.reveal
Unterstützte Sprachen en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Microdata.reveal",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Detects and presents the microdata embedded in a given page.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "View microdata",
        "default_popup": "background.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "microdata.reveal.css",
                "lib\/messi\/messi.min.css"
            ],
            "js": [
                "lib\/jquery-1.6.4.min.js",
                "lib\/json2.js",
                "lib\/microdatajs\/jquery.microdata.js",
                "lib\/microdatajs\/jquery.microdata.json.js",
                "lib\/json-template.js",
                "lib\/messi\/messi.min.js",
                "microdata.reveal.js",
                "tmpl.microdata.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "lib\/messi\/messi.min.css",
        "icon_inactive16.png",
        "icon_inactive48.png",
        "icon_inactive128.png"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}