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!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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/
Related Posts
Leave a comment
Recent posts
- Testing Unity MUSE AI
- QR Code Generator Online
- UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- 2 Sided Lighting for Sprite Diffuse Shader
- Run webgl application locally using python
- [LudumDare53] Delivery
- Dungeon Crawler Jam 2023: Trials Of the Mage
- [GreaseMonkey] Display “Unity Version Added” info in API Docs
- Fake 3D Parallax Effect using Shader & (Pre-generated) Depth Map
- Using OpenAI API with WebRequest from Unity
- [LudumDare52] Theme: Harvest
- Painting with Compute Shader
Recent Comments
- on Three.js PlaneGeometry.js to Unity C#
- on 2D Visibility / Shadow
- on [Asset Store] Point Cloud Viewer & Tools
- on [Asset Store] Point Cloud Viewer & Tools
- on [GreaseMonkey] Display “Unity Version Added” info in API Docs
- on [Asset Store] Point Cloud Viewer & Tools
- on [Asset Store] Point Cloud Viewer & Tools
- on LineRenderer with Outline Shader
An article by










