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"
    ]
}