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

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

Issue 412008: Introduce a new 'all_frames' property to content scripts and (Closed)
Patch Set: responses to comments Created 11 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_script_all_frames/manifest.json
diff --git a/chrome/test/data/extensions/api_test/content_script_all_frames/manifest.json b/chrome/test/data/extensions/api_test/content_script_all_frames/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..0f73a8f310788c57193f932bbd90a3770da34d7c
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/content_script_all_frames/manifest.json
@@ -0,0 +1,18 @@
+{
+ "name": "content_script_all_frames",
+ "version": "1.0",
+ "description": "Tests the all_frames property of content script declarations.",
+ "background_page": "test.html",
+ "permissions": ["tabs"],
+ "content_scripts": [
+ {
+ "matches": ["http://*/*"],
+ "js": ["top_frame_only.js"]
+ },
+ {
+ "matches": ["http://*/*"],
+ "js": ["all_frames.js"],
+ "all_frames": true
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698