mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
7 lines
307 B
JavaScript
7 lines
307 B
JavaScript
chrome.runtime.onInstalled.addListener(function (object) {
|
|
if(object.reason === 'install'){
|
|
// if the extension was just installed, open the options page for them
|
|
chrome.tabs.create({url: "chrome-extension://blenoallcdijagcfhdbidjiimoandabh/options.html"}, function (tab) {});
|
|
}
|
|
});
|