Skip to content

Instantly share code, notes, and snippets.

@akameco
Created March 25, 2020 06:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akameco/e69b8759c5fb173301eddc0da14c3462 to your computer and use it in GitHub Desktop.
Save akameco/e69b8759c5fb173301eddc0da14c3462 to your computer and use it in GitHub Desktop.
GitHub Actionsのページのバッジのurlを対象のアクションのページにする
// ==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