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

Unified Diff: chrome/test/data/extensions/activity_log/manifest.json

Issue 13726026: Added ActivityLog tests and associated bugfixes/extra logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wrapped line Created 7 years, 8 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: chrome/test/data/extensions/activity_log/manifest.json
diff --git a/chrome/test/data/extensions/activity_log/manifest.json b/chrome/test/data/extensions/activity_log/manifest.json
index b22648d715cda78b4f98eb21091668af9475af16..b93f112f05e454a71e5c44b2936e653d4aebc3d1 100644
--- a/chrome/test/data/extensions/activity_log/manifest.json
+++ b/chrome/test/data/extensions/activity_log/manifest.json
@@ -3,8 +3,14 @@
"version": "0.1",
"description": "Testing the Activity Log",
"permissions": [ "cookies", "tabs", "webRequest", "webRequestBlocking",
- "http://*/*", "https://*/*" ],
+ "http://*/*", "https://*/*", "storage" ],
"options_page": "options.html",
"manifest_version": 2,
- "omnibox": { "keyword" : "hello" }
+ "omnibox": { "keyword" : "hello" },
+ "content_scripts": [
+ {
+ "matches": ["http://www.google.com.bo/*"],
+ "js": ["google_cs.js"]
+ }
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698