Green Turtle RDFa

An implementation of RDFa processing in the browser.

Τι είναι το Green Turtle RDFa;

Το Green Turtle RDFa είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Milowski, και η κύρια λειτουργία του είναι "An implementation of RDFa processing in the browser.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Green Turtle RDFa

Λήψη αρχείων επέκτασης 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"
    ]
}