aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/background.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/background.ts')
-rw-r--r--src/background.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/background.ts b/src/background.ts
index e9643667..ea011576 100644
--- a/src/background.ts
+++ b/src/background.ts
@@ -52,16 +52,6 @@ chrome.runtime.onMessage.addListener(function (request, sender, callback) {
//this allows the callback to be called later
return true;
- case "alertPrevious":
- if (Config.config.unsubmittedWarning) {
- chrome.notifications.create("stillThere" + Math.random(), {
- type: "basic",
- title: chrome.i18n.getMessage("wantToSubmit") + " " + request.previousVideoID + "?",
- message: chrome.i18n.getMessage("leftTimes"),
- iconUrl: "./icons/LogoSponsorBlocker256px.png"
- });
- }
- break;
case "registerContentScript":
registerFirefoxContentScript(request);
return false;