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
官方URL 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"
    ]
}