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

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

Issue 2499493004: Communicate ExtensionSettings policy to renderers (Closed)
Patch Set: Style fixes, prevent heap leak. Created 3 years, 10 months 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_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"]
Devlin 2017/02/14 23:17:10 use 2-space indentation in json
nrpeter 2017/03/22 23:47:39 Test removed
+ },
+ "content_scripts": [
+ {
+ "matches": ["*://*/*/inject.html"],
+ "js": ["inject.js"]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698