Created
March 25, 2020 06:06
-
-
Save akameco/e69b8759c5fb173301eddc0da14c3462 to your computer and use it in GitHub Desktop.
GitHub Actionsのページのバッジのurlを対象のアクションのページにする
This file contains 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 add badge for action link | |
// @namespace https://github.com/akameco | |
// @version 0.1 | |
// @description add badge for action link | |
// @author akameco (https://github.com/akameco) | |
// @match https://github.com/*/*/actions* | |
// @grant none | |
// ==/UserScript== | |
const el = document.querySelector('#badge-markdown') | |
el.textContent = `[${el.textContent}](${location.href})` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment