| OLD | NEW |
| 1 <!-- BEGIN AUTHORED CONTENT --> | |
| 2 <p> | 1 <p> |
| 3 The infobars API allows you to add a | 2 The infobars API allows you to add a |
| 4 horizontal panel just above a tab's contents, | 3 horizontal panel just above a tab's contents, |
| 5 as the following screenshot shows. | 4 as the following screenshot shows. |
| 6 </p> | 5 </p> |
| 7 <p> | 6 <p> |
| 8 <img src="{{static}}/images/infobar.png" | 7 <img src="{{static}}/images/infobar.png" |
| 9 width="566" height="150" | 8 width="566" height="150" |
| 10 alt="An infobar asking whether the user wants to translate the current page" /
> | 9 alt="An infobar asking whether the user wants to translate the current page" /
> |
| 11 </p> | 10 </p> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 32 <pre>{ | 31 <pre>{ |
| 33 "name": "Andy's infobar extension", | 32 "name": "Andy's infobar extension", |
| 34 "version": "1.0", | 33 "version": "1.0", |
| 35 <b>"permissions": ["experimental"],</b> | 34 <b>"permissions": ["experimental"],</b> |
| 36 <b>"icons": {</b> | 35 <b>"icons": {</b> |
| 37 <b>"16": "16.png"</b> | 36 <b>"16": "16.png"</b> |
| 38 <b>},</b> | 37 <b>},</b> |
| 39 "background": { | 38 "background": { |
| 40 "scripts": ["background.js"] | 39 "scripts": ["background.js"] |
| 41 } | 40 } |
| 42 }</pre> | 41 }</pre> |
| 43 <!-- END AUTHORED CONTENT --> | |
| OLD | NEW |