Greasy Fork is available in English.

AppLink 自動關分頁

自動把擾人的AppLink分頁關閉

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         AppLink 自動關分頁
// @namespace    http://tampermonkey.net/
// @version      1.0.1
// @description  自動把擾人的AppLink分頁關閉
// @author       Arxing
// @match        https://app.asana.com/-/desktop_app_link*
// @match        https://www.figma.com/design/*
// @match        https://pinkoi.slack.com/archives/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=asana.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(() => {
        window.close();
    }, 2000);
})();