Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 PK /}4@Æ% % | 1 PK /}4@Æ% % |
| 2 simple-example/background.js// Copyright (c) 2012 The Chromium Authors. All r ights reserved. | 2 simple-example/background.js// Copyright (c) 2012 The Chromium Authors. All r ights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 | 5 |
| 6 // This event is fired each time the user updates the text in the omnibox, | 6 // This event is fired each time the user updates the text in the omnibox, |
| 7 // as long as the extension's keyword mode is still active. | 7 // as long as the extension's keyword mode is still active. |
| 8 chrome.omnibox.onInputChanged.addListener( | 8 chrome.omnibox.onInputChanged.addListener( |
| 9 function(text, suggest) { | 9 function(text, suggest) { |
| 10 console.log('inputChanged: ' + text); | 10 console.log('inputChanged: ' + text); |
| 11 suggest([ | 11 suggest([ |
| 12 {content: text + " one", description: "the first one"}, | 12 {content: text + " one", description: "the first one"}, |
| 13 {content: text + " number two", description: "the second entry"} | 13 {content: text + " number two", description: "the second entry"} |
| 14 ]); | 14 ]); |
| 15 }); | 15 }); |
| 16 | 16 |
| 17 // This event is fired with the user accepts the input in the omnibox. | 17 // This event is fired with the user accepts the input in the omnibox. |
| 18 chrome.omnibox.onInputEntered.addListener( | 18 chrome.omnibox.onInputEntered.addListener( |
| 19 function(text) { | 19 function(text) { |
| 20 console.log('inputEntered: ' + text); | 20 console.log('inputEntered: ' + text); |
| 21 alert('You just typed "' + text + '"'); | 21 alert('You just typed "' + text + '"'); |
| 22 }); | 22 }); |
| 23 PK K?@³Rd»ü ü | 23 PK K?@³Rd»ü ü |
| 24 simple-example/manifest.json{ | 24 simple-example/manifest.json{ |
| 25 "name": "Omnibox Example", | 25 "name": "Omnibox Example", |
| 26 "description" : "To use, type 'omnix' plus a search term into the Omnibox.", | 26 "description" : "To use, type 'omnix' plus a search term into the Omnibox.", |
| 27 "version": "1.1", | 27 "version": "1.1", |
| 28 "background": { | 28 "background": { |
| 29 "scripts": ["background.html"] | 29 "scripts": ["background.html"] |
|
chebert
2012/04/03 23:26:58
Shouldn't this have changed when I ran chrome/comm
| |
| 30 }, | 30 }, |
| 31 "omnibox": { "keyword" : "omnix" }, | 31 "omnibox": { "keyword" : "omnix" }, |
| 32 "manifest_version": 2 | 32 "manifest_version": 2 |
| 33 } | 33 } |
| 34 PK /}4@Æ% % | 34 PK /}4@Æ% % |
| 35 simple-example/background.jsPK K?@³Rd»ü ü | 35 simple-example/background.jsPK K?@³Rd»ü ü |
| 36 ( _ simple-example/manifest.json9ade0d5265e48a28b9b3a4bcd8e3a956e90 a5d1fPK ¼ | 36 ( _ simple-example/manifest.json9ade0d5265e48a28b9b3a4bcd8e3a956e90 a5d1fPK ¼ |
| OLD | NEW |