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

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

Issue 1335083004: [Extensions] Don't allow extensions to inject scripts into extension pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/script_a_com/manifest.json
diff --git a/chrome/test/data/extensions/api_test/content_scripts/script_a_com/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/script_a_com/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..8fcb794dfaf00eb62e2883a0a7a2c745d1cecca1
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/content_scripts/script_a_com/manifest.json
@@ -0,0 +1,12 @@
+{
+ "manifest_version": 2,
+ "name": "Script a.com",
+ "version": "0.1",
+ "description": "Content scripts on a.com",
+ "content_scripts": [{
+ "matches": ["http://a.com/*"],
+ "js": ["script.js"],
+ "all_frames": true,
+ "run_at": "document_start"
+ }]
+}

Powered by Google App Engine
This is Rietveld 408576698