Microdata.reveal

Detects and presents the microdata embedded in a given page.

Microdata.revealとは何ですか?

Microdata.revealはjcdarwinによって開発されたChromeの拡張機能で、その主な機能は「Detects and presents the microdata embedded in a given page.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Microdata.reveal拡張機能のCRXファイルをダウンロード

Microdata.reveal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Microdata.reveal Microdata.reveal
ID olapakiakkblfdaajcifgldandnikpdh
公式URL https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh
説明 Detects and presents the microdata embedded in a given page.
ファイルサイズ 326 KB
インストール数 2,825
現在のバージョン 1.2
最終更新日 2012-10-02
公開日 2012-10-02
評価 3.59/5 合計 29 レビュー
開発者 jcdarwin
支払い方法 free
拡張機能のウェブサイト https://github.com/cwa-lml/microdata.reveal
ヘルプページのURL https://github.com/cwa-lml/microdata.reveal
対応言語 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:\/\/*\/*"
    ]
}