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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "Content Script Policy Tests",
3 "version": "1",
4 "manifest_version": 2,
5 "permissions": ["storage"],
6 "background" : {
7 "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
8 },
9 "content_scripts": [
10 {
11 "matches": ["*://*/*/inject.html"],
12 "js": ["inject.js"]
13 }
14 ]
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698