Skip to content

Instantly share code, notes, and snippets.

@Artistan
Created April 15, 2019 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Artistan/52b7989c0073ec6a22b7d7d6d33617c5 to your computer and use it in GitHub Desktop.
Save Artistan/52b7989c0073ec6a22b7d7d6d33617c5 to your computer and use it in GitHub Desktop.
MergeRequest Gitlab
// ==UserScript==
// @name MergeRequest Gitlab
// @namespace https://artistan.org/
// @version 0.1
// @author Artistan
// @include http://git*/merge_requests*
// @include https://git*/merge_requests*
// ==/UserScript==
var favicon_link_html = document.createElement('link');
favicon_link_html.rel = 'shortcut icon';
favicon_link_html.href = 'https://i.ibb.co/3YKGCBR/merge.png';
favicon_link_html.type = 'image/png';
try {
document.getElementsByTagName('head')[0].appendChild( favicon_link_html );
}
catch(e) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment