Green Turtle RDFa

An implementation of RDFa processing in the browser.

Wat is Green Turtle RDFa?

Green Turtle RDFa is een Chrome-extensie ontwikkeld door Alex Milowski, en de belangrijkste functie is "An implementation of RDFa processing in the browser.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Green Turtle RDFa

Download Green Turtle RDFa-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Green Turtle RDFa Green Turtle RDFa
ID loggcajcfkpdeoaeihclldihfefijjam
Officiële URL https://chromewebstore.google.com/detail/green-turtle-rdfa/loggcajcfkpdeoaeihclldihfefijjam
Beschrijving An implementation of RDFa processing in the browser.
Bestandsgrootte 147 KB
Aantal Installaties 589
Huidige Versie 1.2.0
Laatst Bijgewerkt 2013-07-26
Publicatiedatum 2013-07-26
Beoordeling 3.00/5 Totaal 13 Beoordelingen
Ontwikkelaar Alex Milowski
Betalingswijze free
Extensiewebsite http://code.google.com/p/green-turtle/
Help Pagina-URL http://code.google.com/p/green-turtle/
Ondersteunde Talen 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"
    ]
}