Files
sdk/tools/testing/extensions/chrome/ConsoleCollector/manifest.json
T
gram@google.com ee34ca9e60 Chrome extension to get console messages upon test failures. Unlike the
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
2012-10-09 21:09:22 +00:00

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"
]
}