Skip to content

Commit 16f301a

Browse files
authored
Include track params in redirect to website (#51)
1 parent 94e37e6 commit 16f301a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/background.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ browser.browserAction.onClicked.addListener(gitpodifyCurrentTab)
2121

2222
browser.runtime.onInstalled.addListener((details) => {
2323
if (details.reason === "install") {
24-
window.open("https://www.gitpod.io/extension-activation/");
24+
window.open("https://www.gitpod.io/extension-activation?track=true");
2525
}
2626
});
27-
browser.runtime.setUninstallURL("https://www.gitpod.io/extension-uninstall/");
27+
browser.runtime.setUninstallURL("https://www.gitpod.io/extension-uninstall?track=true");

0 commit comments

Comments
 (0)