Green Turtle RDFa

Green Turtle RDFa

An implementation of RDFa processing in the browser.

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "harvest.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs"
  ],
  "web_accessible_resources": [
    "RDFa.js"
  ]
}