Green Turtle RDFa

An implementation of RDFa processing in the browser.

什麼是Green Turtle RDFa?

Green Turtle RDFa是由Alex Milowski開發的Chrome擴展程式,該擴展的主要功能是“An implementation of RDFa processing in the browser.”。

擴展截圖

screenshot

下載Green Turtle RDFa擴展crx文件

下載Green Turtle RDFa擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Green Turtle RDFa Green Turtle RDFa
ID loggcajcfkpdeoaeihclldihfefijjam
官方網址 https://chromewebstore.google.com/detail/green-turtle-rdfa/loggcajcfkpdeoaeihclldihfefijjam
簡介 An implementation of RDFa processing in the browser.
檔案大小 147 KB
安裝次數 589
目前版本 1.2.0
更新時間 2013-07-26
上架時間 2013-07-26
評分 3.00/5 共 13 次評分
開發者 Alex Milowski
付費類型 free
擴展官網 http://code.google.com/p/green-turtle/
說明頁面URL http://code.google.com/p/green-turtle/
支援的語言 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"
    ]
}