Created
April 15, 2019 13:18
-
-
Save Artistan/52b7989c0073ec6a22b7d7d6d33617c5 to your computer and use it in GitHub Desktop.
MergeRequest Gitlab
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 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