NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name redirect_trident_to_jira
// @description populate and templates for jira
// @version 1.1
// @author whatnowmax
// @license MIT
// @description redirect trident jira to jira jira
// @author You
// @match https://trident.tidalautomation.com/jiraissue?id=*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
var _url_string = window.location.href;
var _array_url = _url_string.split('=');
window.location.replace("https://redwoodsoftware.atlassian.net/browse/" + _array_url[1]);
})();