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

7 lines
215 B
JavaScript
Raw Normal View History

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