An implementation of RDFa processing in the browser.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
]
}