JIRA issue linking for git.reactos.org

I actually need this one, probably not the most useful script ever made.

Verze ze dne 25. 10. 2015. Zobrazit nejnovější verzi.

// ==UserScript==
// @name        JIRA  issue linking for git.reactos.org
// @description I actually need this one, probably not the most useful script ever made.
// @namespace   swyter
// @include     https://git.reactos.org/?p=reactos.git;a=commit;h=d3a7469e9a02ff27636b010c7ca92394e98b2a02
// @version     2015.10.25
// @grant       none
// ==/UserScript==

var page_body = document.querySelector(".page_body");

page_body.innerHTML  = page_body.innerHTML.replace(/(CORE-\w+)/, "<a href='https://jira.reactos.org/browse/$1'>$1</a>");