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.”。
扩展截图
下载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 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
} | |