Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: tools/testing/extensions/chrome/ConsoleCollector/manifest.json

Issue 11092015: Chrome extension to get console messages upon test failures. Unlike the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name": "Console Collector",
3 "version": "1.0",
4 "manifest_version": 2,
5 "description": "Allow querying of the Javascript console.",
6 "browser_action": {
7 "name": "ConsoleCollector"
8 },
9 "background": {
10 "scripts": ["background.js"],
11 "persistent": true
12 },
13 "content_scripts": [
14 {
15 "matches": ["http://*/*", "file://*" ],
16 "js": [ "content.js" ]
17 }
18 ],
19 "permissions": [
20 "tabs", "http://*/*", "file://*", "debugger"
21 ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698