You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angularjs-batarang/manifest.json

22 lines
490 B
JSON

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