Open Slack in Browser, not App

Automatically open links in browser instead of app.

目前為 2021-11-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name Open Slack in Browser, not App
// @namespace SlackINBrowser
// @version 0.1
// @description Automatically open links in browser instead of app.
// @author hacker09
// @match https://*.slack.com/archives/*
// @match https://*.slack.com/app_redirect?channel=*
// @icon https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-jZviTc8TfzP5qMACAzl_IutS4ajjAL_uhw&usqp=CAU
// @run-at document-end
// @grant none
// ==/UserScript==

(function() {
  'use strict';
  window.onload = function() {
    document.querySelector("button.c-button-unstyled.p-download_modal__not_now").click();
  }
})();