Microdata.reveal
Detects and presents the microdata embedded in a given page.
Microdata.reveal là gì?
Microdata.reveal là một tiện ích mở rộng Chrome được phát triển bởi jcdarwin, và tính năng chính của nó là "Detects and presents the microdata embedded in a given page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Microdata.reveal
Tải xuống các tệp mở rộng Microdata.reveal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | olapakiakkblfdaajcifgldandnikpdh |
URL Chính Thức | https://chrome.google.com/webstore/detail/microdatareveal/olapakiakkblfdaajcifgldandnikpdh |
Mô tả | Detects and presents the microdata embedded in a given page. |
Kích Thước Tệp | 326 KB |
Số Lần Cài Đặt | 2,825 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2012-10-02 |
Ngày Phát Hành | 2012-10-02 |
Đánh Giá | 3.59/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | jcdarwin |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cwa-lml/microdata.reveal |
URL Trang Trợ Giúp | https://github.com/cwa-lml/microdata.reveal |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |