1
Fork 0
mirror of https://github.com/Steffo99/chakra-magic.git synced 2024-10-16 14:37:28 +00:00
chakra-magic/extension/background.js

11 lines
372 B
JavaScript
Raw Normal View History

let this_browser = null;
if(!this_browser) try { this_browser = browser; } catch(e){}
if(!this_browser)try { this_browser = chrome; } catch(e) {}
2019-09-29 14:35:05 +00:00
function openPage() {
this_browser.tabs.create({
2019-09-29 14:35:05 +00:00
url: "https://steamcommunity.com/my/gcpd/570/?category=Account&tab=MatchPlayerReportIncoming"
});
}
this_browser.browserAction.onClicked.addListener(openPage);