Gmail Unsubscribe Github issues

Unsubscribe by pressing \

Verze ze dne 22. 12. 2023. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Gmail Unsubscribe Github issues
// @namespace    http://tampermonkey.net/
// @version      0.1.4
// @license      MIT
// @grant        GM_openInTab
// @grant        window.close
// @description  Unsubscribe by pressing \
// @match        https://mail.google.com/*
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// ==/UserScript==

function unsubscribe(event) {
    if (event.key !== "\\") {
        return;
    }

    const link = Array.from(document.querySelectorAll('a[href^="https://github.com/notifications/unsubscribe-auth/"]')).findLast(node => node.innerText === 'unsubscribe');
    if (!link) {
      console.log("no link");
      return;
    }
    console.log(link);
    //link.click();
    //console.log("link click");
    let tabControl = GM_openInTab(link.href, true);
    console.log("link open");

    setTimeout(() => {
      tabControl.close();
      console.log("tab close");
    }, 5000);

    const del = Array.from(document.querySelectorAll('[role="button"]')).find(node => node.innerText === 'Delete')
    console.log(del);
    if (!del) {
      console.log("no delete");
      return;
    }
    del.click();
}

(function() {
    'use strict';
    document.addEventListener('keypress', unsubscribe);
})();