tag-youre-it/manifest.json
2015-09-26 20:48:26 +02:00

25 lines
759 B
JSON

{
"name": "Tag you're it",
"description": "Make the meaning clear. This plugin enables semantic tagging of web content.",
"version": "0.7",
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"web_accessible_resources": [
"**/*.html"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["bower_components/bootstrap/dist/css/bootstrap.min.css"],
"js": [
"bower_components/jquery/dist/jquery.min.js",
"bower_components/bootstrap/js/tooltip.js",
"bower_components/bootstrap/dist/js/bootstrap.min.js",
"content_script.js"]
}],
"browser_action": {
"default_title": "Tag you're it! Click to enable or disable tagging of web content."
},
"manifest_version": 2
}