Green Turtle RDFa

An implementation of RDFa processing in the browser.

Green Turtle RDFa क्या है?

Green Turtle RDFa Alex Milowski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An implementation of RDFa processing in the browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Green Turtle RDFa एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}