mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
16 lines
370 B
JavaScript
16 lines
370 B
JavaScript
class Icon {
|
|
constructor() { }
|
|
|
|
setConnected() {
|
|
chrome.action.setTitle({ title: "Connected" });
|
|
chrome.action.setIcon({ path: { '32': 'images/icon32.png' } });
|
|
};
|
|
|
|
setDisconnected() {
|
|
chrome.action.setTitle({ title: "Disconnected" });
|
|
chrome.action.setIcon({ path: { '32': 'images/icon32_disconnected.png' } });
|
|
}
|
|
|
|
}
|
|
|
|
export default new Icon |