games/Ncage++/openOptionsPage.js
2022-11-03 12:38:02 +01:00

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) {});
}
});