Greasy Fork 还支持 简体中文。

Gmail Unsubscribe Github issues

Unsubscribe by pressing \

Från och med 2023-12-22. Se den senaste versionen.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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);
})();