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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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