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

Side by Side Diff: chrome/test/data/extensions/api_test/app_background_page/basic_close/manifest.json

Issue 10298002: No longer start BG mode until a BackgroundContents is loaded (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Prospective fix for cros test failures. Created 8 years, 7 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": "app_background_page/basic_close",
3 "version": "0.1",
4 "manifest_version": 2,
5 "description": "Tests that web-extent background pages can be closed.",
6 "background": {
7 "page": "test.html"
8 },
9 "permissions": ["tabs", "http://a.com/*"],
10 "content_scripts": [
11 {
12 "matches": ["http://a.com/*"],
13 "js": ["content_script.js"],
14 "run_at": "document_end"
15 }
16 ]
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698