Skip to content

Instantly share code, notes, and snippets.

@shotasenga
Last active October 30, 2019 16:09
Show Gist options
  • Save shotasenga/6da947a34de6f0248d88a4e4cfa0d677 to your computer and use it in GitHub Desktop.
Save shotasenga/6da947a34de6f0248d88a4e4cfa0d677 to your computer and use it in GitHub Desktop.
// ==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