dtp-webextension/background.js

12 lines
298 B
JavaScript
Raw Normal View History

2020-06-09 21:27:28 +08:00
'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.");
// });
});