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

Unified Diff: chrome/test/data/extensions/content_script_inject/manifest.json

Issue 60112: Implement chromium.self in content scripts, fix bugs (Closed)
Patch Set: fixedy fixedy Created 11 years, 8 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/content_script_inject/manifest.json
diff --git a/chrome/test/data/extensions/content_script_inject/manifest.json b/chrome/test/data/extensions/content_script_inject/manifest.json
new file mode 100755
index 0000000000000000000000000000000000000000..8214fb605e9067d668787d7c660e78f31bd5acb3
--- /dev/null
+++ b/chrome/test/data/extensions/content_script_inject/manifest.json
@@ -0,0 +1,21 @@
+{
+ "id": "00123456789ABCDEF0123456789ABCDEF0123456",
+ "version": "1.0.0.0",
+ "name": "User script inject",
+ "content_scripts": [
+ {
+ "matches": ["file://*/content_script_inject_page.html"],
+ "css": ["script1.css"],
+ "js": ["js_test.js", "script1a.js", "script1b.js"]
+ },
+ {
+ "matches": ["file://*/content_script_inject_page.html"],
+ "js": ["js_test.js", "script2.js"]
+ },
+ {
+ "matches": ["file://*/content_script_inject_page.html"],
+ "js": ["js_test.js", "script3.js"],
+ "run_at": "document_start"
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698