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

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

Issue 2641863003: [Extensions Bindings] Add a messaging test (Closed)
Patch Set: . Created 3 years, 11 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 "name": "Simple e2e", 2 "name": "Simple e2e",
3 "description": "A simple e2e test for native bindings", 3 "description": "A simple e2e test for native bindings",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "version": "0.1", 5 "version": "0.1",
6 "permissions": ["idle"], 6 "permissions": ["idle", "tabs"],
7 "background": { 7 "background": {
8 "persistent": false, 8 "persistent": false,
9 "page": "background.html" 9 "page": "background.html"
10 } 10 },
11 "content_scripts": [{
12 "matches": ["*://*/*messaging_test.html"],
13 "js": ["content_script.js"]
14 }]
11 } 15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698