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

Side by Side Diff: chrome/test/data/extensions/content_verifier/dot_slash_paths/manifest.json

Issue 1315713009: Fix content verification failures on unusual content script paths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix windows compile error 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 unified diff | Download patch
OLDNEW
1 { 1 {
2 "update_url": "https://clients2.google.com/service/update2/crx", 2 "update_url": "https://clients2.google.com/service/update2/crx",
3 3
4 "name": "Content Verification ./ paths Test", 4 "name": "Content Verification ./ paths Test",
5 "version": "0.8", 5 "version": "0.9",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "background": { 7 "background": {
8 "scripts": ["./background.js"] 8 "scripts": ["./background.js"]
9 }, 9 },
10 "content_scripts": [
11 {
12 "matches": ["*://*.chromium.org/*"],
13 "js": ["./cs1.js", "/cs2.js"]
14 }
15 ],
10 "icons": { 16 "icons": {
11 "128": "./icon.png", 17 "128": "./icon.png",
12 "64": "/icon2.png", 18 "64": "/icon2.png",
13 "32": "img/test/icon4.png", 19 "32": "img/test/icon4.png",
14 "16": "./img/test/icon5.png" 20 "16": "./img/test/icon5.png"
15 }, 21 },
16 "browser_action": { 22 "browser_action": {
17 "default_icon": "./icon3.png" 23 "default_icon": "./icon3.png"
18 } 24 }
19 } 25 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/content_verifier/dot_slash_paths/cs2.js ('k') | extensions/browser/content_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698