Last active
February 24, 2023 01:41
-
-
Save nonefffds/bb351ffa8786e0de12ccb8343fd45c8a to your computer and use it in GitHub Desktop.
Add Floating Compose Button on Elk.zone
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 Add Floating Compose Button on Elk | |
// @namespace https://elk.zone | |
// @version 0.1 | |
// @description A personal use case. | |
// @match https://elk.zone/* | |
// @license MIT | |
// @require http://code.jquery.com/jquery-latest.js | |
// @require https://greasyfork.org/scripts/47911-font-awesome-all-js/code/Font-awesome%20AllJs.js?version=275337 | |
// @grant GM_addStyle | |
// @grant unsafeWindow | |
// @grant window.close | |
// @grant window.focus | |
// ==/UserScript== | |
//reference: https://stackoverflow.com/questions/6480082/add-a-javascript-button-using-greasemonkey-or-tampermonkey | |
//reference: https://codepen.io/androidcss/pen/yOopGp | |
var zNode = document.createElement ('div'); | |
zNode.innerHTML = '<button id="float" type="button"><i class="fa fa-plus" /></button>'; | |
zNode.setAttribute ('id', 'float'); | |
document.body.appendChild (zNode); | |
document.getElementById ("float").addEventListener ( | |
"click", ButtonClickAction, false | |
); | |
function ButtonClickAction (zEvent) { | |
location.href = "https://elk.zone/compose"; | |
} | |
GM_addStyle ( | |
` | |
#float{ | |
position:fixed; | |
width:60px; | |
height:60px; | |
bottom:70px; | |
right:40px; | |
background-color:#CE8430; | |
color:#FFF; | |
border-radius:50px; | |
text-align:center; | |
box-shadow: 2px 2px 3px #999; | |
} | |
#my-float{ | |
margin-top:22px; | |
} | |
` | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://elk.zone/mastodon.social/@nonefffds/109878848106634923