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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Activity Log Test Extension", 2 "name": "Activity Log Test Extension",
3 "version": "0.1", 3 "version": "0.1",
4 "description": "Testing the Activity Log", 4 "description": "Testing the Activity Log",
5 "permissions": [ "cookies", "tabs", "webRequest", "webRequestBlocking", 5 "permissions": [ "cookies", "tabs", "webRequest", "webRequestBlocking",
6 "http://*/*", "https://*/*" ], 6 "http://*/*", "https://*/*", "storage" ],
7 "options_page": "options.html", 7 "options_page": "options.html",
8 "manifest_version": 2, 8 "manifest_version": 2,
9 "omnibox": { "keyword" : "hello" } 9 "omnibox": { "keyword" : "hello" },
10 "content_scripts": [
11 {
12 "matches": ["http://www.google.com.bo/*"],
13 "js": ["google_cs.js"]
14 }
15 ]
10 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698