| Index: chrome/test/data/extensions/api_test/content_scripts/about_blank_srcdoc/manifest.json
|
| diff --git a/chrome/test/data/extensions/api_test/content_scripts/about_blank_srcdoc/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/about_blank_srcdoc/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0dd61ba4f044df8e0d26e3378c50bd8dd280e1ee
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/content_scripts/about_blank_srcdoc/manifest.json
|
| @@ -0,0 +1,17 @@
|
| +{
|
| + "name": "about:blank and about:srcdoc",
|
| + "version": "1.0",
|
| + "manifest_version": 2,
|
| + "description": "Tests that content scripts are injected in about:blank and about:srcdoc frames if it has access to the parent frame.",
|
| + "background": {
|
| + "page": "test.html"
|
| + },
|
| + "permissions": ["about:*", "*://*/*"],
|
| + "content_scripts": [
|
| + {
|
| + "matches": ["about:*", "*://*/*"],
|
| + "js": ["content_script.js"],
|
| + "all_frames": true
|
| + }
|
| + ]
|
| +}
|
|
|