Microdata.reveal

Detects and presents the microdata embedded in a given page.

Microdata.revealคืออะไร?

Microdata.reveal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jcdarwin และคุณลักษณะหลักของมันคือ "Detects and presents the microdata embedded in a given page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Microdata.reveal

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
    ]
}