Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" | 6 "experimental", "tabs", "chrome://favicon/*" |
|
Boris Smus
2011/10/18 21:42:06
Why do we need this?
Mike West
2011/10/19 08:39:12
Because the extension displays favicons for each i
| |
| 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 "popup": "popup.html" | 11 "popup": "popup.html" |
| 12 } | 12 }, |
| 13 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self'; img-src chrome://favicon" | |
| 13 } | 14 } |
| OLD | NEW |