12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
'use strict';
|
|
|
|
chrome.browserAction.onClicked.addListener(function(callback) {
|
|
//chrome.declarativeContent.ShowPageAction();
|
|
});
|
|
|
|
chrome.runtime.onInstalled.addListener(function() {
|
|
// chrome.storage.sync.set({color: '#3aa757'}, function() {
|
|
// console.log("The color is green.");
|
|
// });
|
|
});
|