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 Dowmload VSIX | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @description This userscript allows you to download VSIX files directly from the Visual Studio Marketplace | |
// @updateURL https://gist.githubusercontent.com/Sigmanor/8e367568ba3dd88b8a2c30fb7ec083e3/raw/script.user.js | |
// @downloadURL https://gist.githubusercontent.com/Sigmanor/8e367568ba3dd88b8a2c30fb7ec083e3/raw/script.user.js | |
// @author sigmanor | |
// @homepageURL https://github.com/Sigmanor | |
// @match https://marketplace.visualstudio.com/* |
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
using System; | |
using System.Collections; | |
using System.Collections.Specialized; | |
using System.Configuration; | |
using System.IO; | |
using System.Windows.Forms; | |
using System.Xml; | |
namespace LifeIdea.LazyCure | |
{ |
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
using System; | |
using System.Drawing; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
using System.Windows.Forms.VisualStyles; | |
// Thanks for fixes: | |
// * Marco Minerva, jachymko - http://www.codeplex.com/windowsformsaero | |
// * Ben Ryves - http://www.benryves.com/ | |
// |