We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 876ec33 commit ba41078Copy full SHA for ba41078
background.js
@@ -1,13 +1,11 @@
1
// Used by the manifest v3 extension
2
3
chrome.runtime.onInstalled.addListener((object) => {
4
- if (object.reason !== "install" && object.reason !== "update") {
+ if (object.reason !== "install") {
5
return;
6
}
7
8
- const targetUrl = `https://typefully.com/minimal-twitter/welcome${
9
- object.reason === "update" ? "?updated=true" : ""
10
- }`;
+ const targetUrl = `https://typefully.com/minimal-twitter/welcome`;
11
12
if (targetUrl) {
13
chrome.tabs.create({
0 commit comments