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

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

Issue 2978953002: [Extensions] Don't allow content scripts on the New Tab Page (Closed)
Patch Set: Remove logging! Created 3 years, 5 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/ntp/manifest.json
diff --git a/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..0eef9ce93d0ab8d47ef19b4edecbe3e06c7357f0
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/content_scripts/ntp/manifest.json
@@ -0,0 +1,13 @@
+{
+ "name": "New Tab Page Injector",
+ "version": "0.1",
+ "manifest_version": 2,
+ "description": "Injects in the NTP",
+ "content_scripts": [{
+ "matches": ["*://*/*"],
+ "js": ["script.js"],
+ "run_at": "document_end"
+ }],
+ "background": {"scripts": ["background.js"]},
+ "permissions": ["tabs", "*://*/*"]
+}

Powered by Google App Engine
This is Rietveld 408576698