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 hidden or 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
- Favorites in PackageManager
- LudumDare59 : Signal
- Unity Editor: Tree Generator
- Leaf/Foliage Generator Tools (Runs in Browser)
- Testing Unity AI Beta
- Ways to Support UnityCoder Development
- Using UI Slider to Create 5-Star Rating Element
- Game Music Library For Unity (editor plugin)
- Fontastic : Easily Test Fonts in Unity Editor!
- GeoTiff Importer & Terrain Generator for Unity
- Create Baked DropShadow for UI images
- .JP2 Ortho Image Converter to PNG/JPG/TIFF
Recent Comments
- on Mesh Exploder (sources)
- on Sprite Sheet Flip Book Shader
- on Sprite Sheet Flip Book Shader
- on [Asset Store] PolygonCollider2D Optimizer
- on Trajectory Test Scene 2.0
- on Vector3 maths for dummies!
- on UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- on Using RenderDoc with Unity (graphics debugger)
Coin:
CUgDSbRqFcAumDSAcdKDvuXsw26VdkJe8C8WGUQHBAGS
An article by











