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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}