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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: tools/testing/extensions/chrome/ConsoleCollector/manifest.json
===================================================================
--- tools/testing/extensions/chrome/ConsoleCollector/manifest.json (revision 0)
+++ tools/testing/extensions/chrome/ConsoleCollector/manifest.json (revision 0)
@@ -0,0 +1,22 @@
+{
+ "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"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698