Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Steemit ↔ Steemd
- // @namespace Steemit ↔ Steemd
- // @description Quickly Switch Between Steemit.com and Steemd.com
- // @version 1
- // @author https://steemit.com/@bitcoiner
- // @include https://steemit.com/*
- // @include https://steemd.com/*
- // @grant none
- // ==/UserScript==
- var menu = document.body.appendChild(document.createElement("menu"));
- menu.outerHTML = '<menu id="userscript-context-menu" type="context"><menuitem id="userscript-context-menuitem" label="Steemit ↔ Steemd" icon="https://steemit.com/images/favicons/favicon-32x32.png"></menuitem></menu>';
- var html = document.documentElement;
- html.setAttribute("contextmenu", "userscript-context-menu");
- document.getElementById("userscript-context-menuitem").addEventListener("click", onMenuClick, false);
- function onMenuClick() {
- location.assign("//" + ((location.hostname == "steemd.com") ? "steemit.com" : "steemd.com") + ((location.pathname.split("/")[1].indexOf("@") == -1) ? location.pathname : ("/" + location.pathname.split("/")[1])));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement