| Index: chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json
|
| diff --git a/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json b/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ea931b532f502171fb07f44f37d6b1f4559f4b45
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/window_open/popup_blocking/extension/manifest.json
|
| @@ -0,0 +1,13 @@
|
| +{
|
| + "name": "Popup blocking test",
|
| + "version": "1",
|
| + "description": "Popup windows should never be blocked from within an extension.",
|
| + "permissions": ["tabs"],
|
| + "background_page": "background.html",
|
| + "content_scripts": [
|
| + {
|
| + "matches": ["http://b.com/*"],
|
| + "js": ["pop.js", "content_script.js"]
|
| + }
|
| + ]
|
| +}
|
|
|