Green Turtle RDFa

An implementation of RDFa processing in the browser.

Green Turtle RDFa là gì?

Green Turtle RDFa là một tiện ích mở rộng Chrome được phát triển bởi Alex Milowski, và tính năng chính của nó là "An implementation of RDFa processing in the browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Green Turtle RDFa

Tải xuống các tệp mở rộng Green Turtle RDFa 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

                        An implementation and viewer of RDFa 1.1 (http://www.w3.org/TR/rdfa-core/) triples.  

When triples are discovered in a web page, a little green turtle will appear in the address bar.  If you click on that turtle, you can view the triple graph.

This extension only has access to information you have on the current web page.  It does not use the information except to harvest the triples and create a visualization.  It will run for every page you view.  You can use the extension management in the preferences to enable or disable the extension depending on your needs.

Version 1.1 includes support for Turtle output and URI shortening.

Version 1.2 includes option Microdata support.

See http://www.milowski.com/journal/entry/2013-07-26T15:25:04.782Z/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Green Turtle RDFa Green Turtle RDFa
ID loggcajcfkpdeoaeihclldihfefijjam
URL Chính Thức https://chromewebstore.google.com/detail/green-turtle-rdfa/loggcajcfkpdeoaeihclldihfefijjam
Mô tả An implementation of RDFa processing in the browser.
Kích Thước Tệp 147 KB
Số Lần Cài Đặt 589
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2013-07-26
Ngày Phát Hành 2013-07-26
Đánh Giá 3.00/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Alex Milowski
Loại Thanh Toán free
Trang Web Mở Rộng http://code.google.com/p/green-turtle/
URL Trang Trợ Giúp http://code.google.com/p/green-turtle/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Green Turtle RDFa",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "An implementation of RDFa processing in the browser.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "turtle-32x32.png",
        "default_title": "Show Triples"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "harvest.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "RDFa.js"
    ]
}