| Index: chrome/test/data/extensions/api_test/content_scripts/policy_blocked/manifest.json
|
| diff --git a/chrome/test/data/extensions/api_test/content_scripts/policy_blocked/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/policy_blocked/manifest.json
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..50e57d7aa481c0f6a1332bac33e7f4661210e324
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/content_scripts/policy_blocked/manifest.json
|
| @@ -0,0 +1,15 @@
|
| +{
|
| + "name": "Content Script Policy Tests",
|
| + "version": "1",
|
| + "manifest_version": 2,
|
| + "permissions": ["storage"],
|
| + "background" : {
|
| + "scripts": ["background.js"]
|
| + },
|
| + "content_scripts": [
|
| + {
|
| + "matches": ["*://*/*/inject.html"],
|
| + "js": ["inject.js"]
|
| + }
|
| + ]
|
| +}
|
|
|