| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="reply.js"></script> | 4 <script src="reply.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <h1>Settings</h1> | 7 <h1>Settings</h1> |
| 8 <input type="checkbox" id="incognito_checkbox">Use incognito mode</input> | 8 <input type="checkbox" id="incognito_checkbox">Use incognito mode</input> |
| 9 <h1>Chrome API calls</h1> | 9 <h1>Chrome API calls</h1> |
| 10 <button name="chromeButton" id="api_call"> | 10 <button name="chromeButton" id="api_call"> |
| 11 Make a successful API call</button><br /> | 11 Make a successful API call</button><br /> |
| 12 <button name="chromeButton" id="special_call"> | 12 <button name="chromeButton" id="special_call"> |
| 13 Make a special API call</button><br /> | 13 Make a special API call</button><br /> |
| 14 <button name="chromeButton" id="double"> | 14 <button name="chromeButton" id="double"> |
| 15 Check we don't double log API calls</button><br /> | 15 Check we don't double log API calls</button><br /> |
| 16 <button name="chromeButton" id="app_bindings"> | 16 <button name="chromeButton" id="app_bindings"> |
| 17 Make a chrome.app.* API call</button><br /> | 17 Make a chrome.app.* API call</button><br /> |
| 18 <button name="chromeButton" id="blocked_call"> | 18 <button name="chromeButton" id="blocked_call"> |
| 19 Make a blocked API call</button><br /> | 19 Make a blocked API call</button><br /> |
| 20 <button name="chromeButton" id="inject_cs"> | 20 <button name="chromeButton" id="object_methods"> |
| 21 Inject a content script</button><br /> | 21 Invoke an object's methods</button><br /> |
| 22 <button name="chromeButton" id="inject_blob"> | |
| 23 Inject a blob of code</button><br /> | |
| 24 <button name="chromeButton" id="webrequest"> | 22 <button name="chromeButton" id="webrequest"> |
| 25 Modify HTTP headers with webRequest</button><br /> | 23 Modify HTTP headers with webRequest</button><br /> |
| 26 <button name="chromeButton" id="object_properties"> | 24 <button name="chromeButton" id="connect_other"> |
| 27 Read and change an object's properties</button><br /> | 25 Connect to another ext</button><br /> |
| 28 <button name="chromeButton" id="object_methods"> | |
| 29 Invoke an object's methods</button><br /> | |
| 30 <button name="chromeButton" id="message_cs"> | |
| 31 Send a message to a content script</button><br /> | |
| 32 <button name="chromeButton" id="message_self"> | 26 <button name="chromeButton" id="message_self"> |
| 33 Send a message within the ext</button><br /> | 27 Send a message within the ext</button><br /> |
| 34 <button name="chromeButton" id="message_other"> | 28 <button name="chromeButton" id="message_other"> |
| 35 Send a message to another ext</button><br /> | 29 Send a message to another ext</button><br /> |
| 36 <button name="chromeButton" id="connect_other"> | |
| 37 Connect to another ext</button><br /> | |
| 38 <button name="chromeButton" id="tab_ids"> | 30 <button name="chromeButton" id="tab_ids"> |
| 39 Tab ID translation</button><br /> | 31 Tab ID translation</button><br /> |
| 32 <button name="chromeButton" id="api_tab_updated"> |
| 33 Execute api calls on new tab</button><br /> |
| 34 |
| 40 <br /> | 35 <br /> |
| 41 <h1>DOM and HTML5 API calls</h1> | 36 <h1>DOM and HTML5 API calls</h1> |
| 42 <button name="domButton" id="background_xhr"> | 37 <button name="domButton" id="background_xhr"> |
| 43 Do a XHR from background page</button><br /> | 38 Do a XHR from background page</button><br /> |
| 44 <button name="domButton" id="cs_xhr"> | 39 |
| 45 Do a XHR from content script</button><br /> | 40 <button name="domButton" id="dom_tab_updated"> |
| 46 <button name="domButton" id="location_access"> | 41 Execute dom calls on tab updated</button><br /> |
| 47 Acccess Location</button><br /> | |
| 48 <button name="domButton" id="dom_mutation1"> | |
| 49 Mutate DOM tree - test1</button><br /> | |
| 50 <button name="domButton" id="dom_mutation2"> | |
| 51 Mutate DOM tree - test2</button><br /> | |
| 52 <button name="domButton" id="navigator_access"> | |
| 53 Access HTML5 Navigator API</button><br /> | |
| 54 <button name="domButton" id="web_storage_access1"> | |
| 55 Access HTML5 WebStorage API - test1</button><br /> | |
| 56 <button name="domButton" id="web_storage_access2"> | |
| 57 Access HTML5 WebStorage API - test2</button><br /> | |
| 58 <button name="domButton" id="notification_access"> | |
| 59 Access HTML5 Notifcation API</button><br /> | |
| 60 <button name="domButton" id="application_cache_access"> | |
| 61 Access HTML5 ApplicationCache API</button><br /> | |
| 62 <button name="domButton" id="web_database_access"> | |
| 63 Access HTML5 WebDatabase API</button><br /> | |
| 64 <button name="domButton" id="canvas_access"> | |
| 65 Access HTML5 Canvas API</button><br /> | |
| 66 <br /> | 42 <br /> |
| 67 <h1>Status:</h1> <div id="status"></div> | 43 <h1>Status:</h1> <div id="status"></div> |
| 68 </body> | 44 </body> |
| 69 </html> | 45 </html> |
| OLD | NEW |