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

Unified Diff: chrome/test/data/extensions/api_test/content_scripts/extension_api/manifest.json

Issue 8585005: Enable content scripts to receive extension API events. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 9 years, 1 month 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/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"]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698