Skip to content

Instantly share code, notes, and snippets.

@Dark000Soldier
Forked from asportnoy/open-youtube-app.user.js
Last active December 4, 2022 17:49
Show Gist options
  • Select an option

  • Save Dark000Soldier/4814f9269d2af7b95e32ee89274f8cc5 to your computer and use it in GitHub Desktop.

Select an option

Save Dark000Soldier/4814f9269d2af7b95e32ee89274f8cc5 to your computer and use it in GitHub Desktop.
Open Youtube App Userscript | See https://github.com/qnblackcat/uYouPlus/issues/69
// ==UserScript==
// @name Open Instagram App
// @version 1.0.2
// @author asportnoy
// @match *://*.instagram.com/*
// @downloadURL https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/raw/open-instagram-app.user.js
// @updateURL https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/raw/open-instagram-app.user.js
// @homepage https://gist.github.com/asportnoy/628b820184297f5fe296c1a5b79c8000/
// ==/UserScript==
if (window.location.pathname === '/redirect') return;
window.location.href = `instagram://${window.location.pathname.slice(1)}${
window.location.search
}${window.location.hash}`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment