This repository has been archived on 2020-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
angularjs-batarang/manifest.json
2012-07-25 15:37:37 -07:00

22 lines
488 B
JSON

{
"name": "AngularJS Batarang",
"version": "0.2",
"description": "Extends the Developer Tools, adding tools for debugging and profiling AngularJS applications.",
"background": {
"page": "background.html"
},
"devtools_page": "devtoolsBackground.html",
"manifest_version": 2,
"permissions": [
"tabs",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/inject/debug.js"],
"run_at": "document_start"
}
]
}