manifest.json revision 3551c9c881056c480085172ff9840cab31610854
1{
2  "name": "Show Tabs in Process",
3  "version": "1.0",
4  "description": "Adds a browser action showing which tabs share the current tab's process.",
5  "permissions": [
6    "processes", "tabs", "chrome://favicon/*"
7  ],
8  "browser_action": {
9      "default_title": "Show Tabs in this Process",
10      "default_icon": "icon.png",
11      "default_popup": "popup.html"
12  },
13  "manifest_version": 2
14}
15