Last active
October 30, 2019 16:09
-
-
Save shotasenga/6da947a34de6f0248d88a4e4cfa0d677 to your computer and use it in GitHub Desktop.
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 Backlog Gantt Chart Styles | |
// @namespace http://senta.me/ | |
// @version 0.1.3 | |
// @description Add styled on Backlog.jp to show the ticket IDs | |
// @author @__senta | |
// @match https://*.backlog.jp/gantt/* | |
// @match https://*.backlog.jp/ViewProjectGantt.action* | |
// @grant none | |
// ==/UserScript== | |
;(function() { | |
"use strict" | |
const style = document.createElement("style") | |
style.innerText = ` | |
.summary-link::after { | |
content: attr(href); | |
display: block; | |
font-size: .6em; | |
} | |
` | |
document.getElementsByTagName("head")[0].appendChild(style) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment