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

23 lines
500 B
JSON

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