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

23 lines
534 B
JSON
Raw Normal View History

2012-07-02 21:09:51 +00:00
{
"name": "AngularJS Batarang",
2012-08-07 19:03:26 +00:00
"version": "0.2.1",
"description": "Extends the Developer Tools, adding tools for debugging and profiling AngularJS applications.",
2012-07-02 21:09:51 +00:00
"background": {
"page": "background.html"
},
2012-07-25 22:37:11 +00:00
"devtools_page": "devtoolsBackground.html",
2012-07-02 21:09:51 +00:00
"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"
2012-07-02 21:09:51 +00:00
}