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.Windows; | |
namespace CefSharp.MinimalExample.Wpf | |
{ | |
public partial class MainWindow : Window | |
{ | |
public MainWindow() | |
{ | |
InitializeComponent(); | |
Browser.RequestHandler = new AuthHandler(); |
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 SteemitStem | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Takes you to Steemit and beyond! | |
// @author MWFIAE | |
// @match https://www.steemstem.io/* | |
// @grant none | |
// ==/UserScript== |