| 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..273b3c7b0f6f17538b75a7737bfee32af5294f2a 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.bw/*"],
|
| + "js": ["google_cs.js"]
|
| + }
|
| + ]
|
| }
|
|
|