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

28 lines
596 B
JSON
Raw Normal View History

2012-07-02 21:09:51 +00:00
{
"name": "AngularJS Batarang",
2014-12-11 21:11:27 +00:00
"version": "0.7.3",
"description": "Extends the Developer Tools, adding tools for debugging and profiling AngularJS applications.",
2014-08-06 21:46:25 +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": ["inject.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
},
2014-08-04 22:42:58 +00:00
"web_accessible_resources": [
"dist/hint.js"
2014-08-04 22:42:58 +00:00
],
"minimum_chrome_version": "21.0.1180.57"
}