Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json |
| diff --git a/chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json |
| index 30fe2a41c9962cb7a1ce55e003c70dccb0efcb3c..26d85d37b8472c88513c16eb28419d327df590d9 100644 |
| --- a/chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json |
| +++ b/chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json |
| @@ -1,11 +1,15 @@ |
| { |
| "name": "Content Script API Tests", |
| "version": "1", |
| - "permission": ["tabs"], |
| + "permissions": ["tabs", "experimental"], |
|
Yoyo Zhou
2011/11/16 23:51:13
Ouch... Since this wasn't successfully using tabs
Aaron Boodman
2011/11/17 07:17:52
Good point, done.
|
| "content_scripts": [ |
| { |
| "matches": ["*://*/functions.html"], |
| "js": ["functions.js"] |
| + }, |
| + { |
| + "matches": ["*://*/events.html"], |
| + "js": ["events.js"] |
| } |
| ] |
| } |