| 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
|
| + }
|
| + ]
|
| +}
|
|
|