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

Side by Side Diff: chrome/common/extensions/docs/examples/api/processes/show_tabs/manifest.json

Issue 22584002: Move processes API to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased again Created 7 years, 4 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": "Show Tabs in Process", 2 "name": "Show Tabs in Process",
3 "version": "1.0", 3 "version": "1.0",
4 "description": "Adds a browser action showing which tabs share the current tab 's process.", 4 "description": "Adds a browser action showing which tabs share the current tab 's process.",
5 "permissions": [ 5 "permissions": [
6 "experimental", "tabs", "chrome://favicon/*" 6 "processes", "tabs", "chrome://favicon/*"
7 ], 7 ],
8 "browser_action": { 8 "browser_action": {
9 "default_title": "Show Tabs in this Process", 9 "default_title": "Show Tabs in this Process",
10 "default_icon": "icon.png", 10 "default_icon": "icon.png",
11 "default_popup": "popup.html" 11 "default_popup": "popup.html"
12 }, 12 },
13 "manifest_version": 2 13 "manifest_version": 2
14 } 14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698