Open Slack in Browser, not App

Automatically open links in browser instead of app.

Installer dette script?
Skaberens foreslåede script

Du vil måske også kunne lide Redirect YT video to embedded video

Installer dette script

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 or Violentmonkey 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         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();
  };
})();