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

Side by Side Diff: chrome/test/data/extensions/manifest_tests/background_allow_no_js_access.json

Issue 9508008: Allow apps with background pages to request process-per-app-instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Prevent script access to background page. Created 8 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 "name": "test",
3 "version": "1",
4 "app": {
5 "urls": [
6 "https://www.google.com/mail/"
7 ],
8 "launch": {
9 "web_url": "https://www.google.com/mail/"
10 }
11 },
12 "permissions": [
13 "background"
14 ],
15 "background": {
16 "page": "https://www.google.com/mail/foo.html",
17 "allow_js_access": false
18 }
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698