Sep
23
2018

Browser Plugin: Stay in Old Asset Store

Small snippet to use with GreaseMonkey-plugin,
will stop old & short url asset store links from re-directing into that horrible new asset store!

*New v2: Now automatically redirects from new horrible store to good old store AND keeps the asset page!


// ==UserScript==
// @name Force Old Unity Asset Store
// @version 2
// @include https://www.assetstore.unity3d.com/#!/content/*
// @include https://assetstore.unity.com/packages/*
// @run-at document-start
// @grant none
// ==/UserScript==
// https://unitycoder.com/blog/2018/09/23/browser-plugin-stay-in-old-asset-store/
if (window.location.toString().indexOf("https://assetstore.unity.com/packages/")>-1)
{
// arriving to new store, jump to old.. FAST!
var ids=window.location.toString().split('-');
if (ids!=null && ids.length>0)
{
// take asset number
window.location = "https://www.assetstore.unity3d.com/en/?stay#!/content/"+ids[ids.length-1];
}
}else{
// we are already in old store
window.location.search = "?stay-a-while…stay-forever!";
}

GreaseMonkey plugin for firefox: https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/

Forum post: https://forum.unity.com/threads/browser-plugin-always-stay-in-the-old-asset-store.559633/

 


Leave a comment

Connect

Twitter View LinkedIn profile Youtube Youtube Join Discord Twitch Instagram

UnityLauncherPro

Get UnityLauncherPRO and work faster with Unity Projects!
*free unity hub alternative

@unitycoder_com

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.