Greasy Fork is available in English.

Open Slack in Browser, not App

Automatically open links in browser instead of app.

安装此脚本?
作者推荐脚本

您可能也喜欢Redirect YT video to embedded video

安装此脚本
// ==UserScript==
// @name         Open Slack in Browser, not App
// @namespace    SlackINBrowser
// @version      3
// @description  Automatically open links in browser instead of app.
// @author       hacker09
// @match        https://*.slack.com/ssb/redirect
// @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("a.c-link:nth-child(3)").click();
  };
})();