ee34ca9e60
prior one which used chrome.experimental.console APIs, which aren't accessible to non-devtool extensions, this one uses remote debugging APIs, which are. Review URL: https://codereview.chromium.org//11092015 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@13442 260f80e4-7a28-3924-810f-c04153c831b5
23 lines
467 B
JSON
23 lines
467 B
JSON
{
|
|
"name": "Console Collector",
|
|
"version": "1.0",
|
|
"manifest_version": 2,
|
|
"description": "Allow querying of the Javascript console.",
|
|
"browser_action": {
|
|
"name": "ConsoleCollector"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "file://*" ],
|
|
"js": [ "content.js" ]
|
|
}
|
|
],
|
|
"permissions": [
|
|
"tabs", "http://*/*", "file://*", "debugger"
|
|
]
|
|
}
|