We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a38f9 commit e9bec63Copy full SHA for e9bec63
public/background.js
@@ -2,3 +2,7 @@ const uninstallUrl = `https://hackertab.dev/uninstall.html`
2
if (chrome.runtime.setUninstallURL) {
3
chrome.runtime.setUninstallURL(uninstallUrl)
4
}
5
+
6
+chrome.action.onClicked.addListener(function () {
7
+ chrome.tabs.create({ url: 'index.html', selected: true })
8
+})
0 commit comments