- Change your JIRA domain on line 7
- Install with Greasmonkey for Firefox or Tampermonkey for Chrome
Ctrl+click to revert to the original behaviour
| <script> | |
| (function (url) { | |
| var id = 'svg-sprite'; | |
| var container; | |
| var xhr = new XMLHttpRequest(); | |
| var body = document.body; | |
| if ('withCredentials' in xhr) { | |
| xhr.withCredentials; | |
| xhr.open('GET', url, true); |
| <div class="mosaic"> | |
| <div class="tile tile-1"></div> | |
| <div class="tile tile-2"></div> | |
| <div class="tile tile-3"></div> | |
| <div class="tile tile-4"></div> | |
| <div class="tile tile-5"></div> | |
| <div class="tile tile-6"></div> | |
| <div class="tile tile-7"></div> | |
| <div class="tile tile-8"></div> | |
| <div class="tile tile-9"></div> |
| var path = require('path'); | |
| function importPaths(url, file, done) { | |
| try { | |
| var newPath = path.relative(path.dirname(file), require.resolve(url + '.scss')); | |
| return done({ file: newPath }) | |
| } catch (e) { | |
| return done({ file: url}) | |
| } |
| function equilibrium(numberArray) { | |
| var lower, higher, equilibriums = []; | |
| var lowerSum, higherSum; | |
| function sum(arrayParts) { | |
| return arrayParts.reduce(function (prev, curr) { | |
| return prev + curr; | |
| }, 0); | |
| } | |
| export BASH_SILENCE_DEPRECATION_WARNING=1 | |
| source ~/.bashrc | |
| #eval "$(/opt/homebrew/bin/brew shellenv)" | |
| [[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
| #export PATH="/usr/local/sbin:$PATH" | |
| #export YARN_NPM_AUTH_TOKEN="" | |
| #alias assume=". assume" |
| 'use strict'; | |
| var path = require('path'); | |
| var gulp = require('gulp'); | |
| var conf = require('./conf'); | |
| var twig = require('gulp-twig'); | |
| var data = require('gulp-data'); | |
| var getJsonData = function(file) { |
| @function em($target, $context, $unitless: false) { | |
| $unit: if($unitless, 1, 1em); | |
| @return strip-unit($target / $context) * $unit; | |
| } |
| // ==UserScript== | |
| // @name Hide Twitter Moments and Add Likes | |
| // @namespace http://mattstow.com/ | |
| // @version 0.2 | |
| // @description Hide Twitter Moments tab and a Likes tab | |
| // @author Matt Stow | |
| // @match https://twitter.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| /* jshint -W097 */ |