Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 711e02b

Browse files
committed
Added uninstall URL
1 parent 09ca5bc commit 711e02b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

app/bg/background.js

+8
Original file line numberDiff line numberDiff line change
@@ -836,6 +836,14 @@ chrome.runtime.onInstalled.addListener(function(details) {
836836
}
837837
});
838838

839+
chrome.runtime.setUninstallURL('http://goo.gl/forms/FFT1sTZpKJ', function() {
840+
if (chrome.runtime.lastError) {
841+
console.error(chrome.runtime.lastError);
842+
}
843+
844+
console.log('Uninstall URL set');
845+
});
846+
839847
chrome.browserAction.onClicked.addListener(function(tab) {
840848
openSettingsTab();
841849
});

0 commit comments

Comments
 (0)