Green Turtle RDFa

An implementation of RDFa processing in the browser.

O que é Green Turtle RDFa?

Green Turtle RDFa é uma extensão do Chrome desenvolvida por Alex Milowski, e sua principal característica é "An implementation of RDFa processing in the browser.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Green Turtle RDFa

Baixe arquivos de extensão Green Turtle RDFa no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Green Turtle RDFa Green Turtle RDFa
ID loggcajcfkpdeoaeihclldihfefijjam
URL Oficial https://chromewebstore.google.com/detail/green-turtle-rdfa/loggcajcfkpdeoaeihclldihfefijjam
Descrição An implementation of RDFa processing in the browser.
Tamanho do Arquivo 147 KB
Contagem de Instalações 589
Versão Atual 1.2.0
Última Atualização 2013-07-26
Data de Publicação 2013-07-26
Classificação 3.00/5 Total de 13 Avaliações
Desenvolvedor Alex Milowski
Tipo de Pagamento free
Site da Extensão http://code.google.com/p/green-turtle/
URL da Página de Ajuda http://code.google.com/p/green-turtle/
Idiomas Suportados 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"
    ]
}