Automatically open links in browser instead of app.
Du vil måske også kunne lide 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(); }; })();