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-08-07 12:03:26 -07:00

23 lines
534 B
JSON

{
"name": "AngularJS Batarang",
"version": "0.2.1",
"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"
}
],
"minimum_chrome_version": "21.0.1180.57"
}