Green Turtle RDFa

An implementation of RDFa processing in the browser.

Cos'è Green Turtle RDFa?

Green Turtle RDFa è un'estensione di Chrome sviluppata da Alex Milowski, e la sua funzione principale è "An implementation of RDFa processing in the browser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Green Turtle RDFa

Scarica i file di estensione Green Turtle RDFa in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Green Turtle RDFa Green Turtle RDFa
ID loggcajcfkpdeoaeihclldihfefijjam
URL Ufficiale https://chromewebstore.google.com/detail/green-turtle-rdfa/loggcajcfkpdeoaeihclldihfefijjam
Descrizione An implementation of RDFa processing in the browser.
Dimensione del File 147 KB
Conteggio Installazioni 589
Versione Corrente 1.2.0
Ultimo Aggiornamento 2013-07-26
Data di Pubblicazione 2013-07-26
Valutazione 3.00/5 Totale 13 Valutazioni
Sviluppatore Alex Milowski
Tipo di Pagamento free
Sito Web dell'Estensione http://code.google.com/p/green-turtle/
URL della Pagina di Aiuto http://code.google.com/p/green-turtle/
Lingue Supportate 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"
    ]
}