Skip to content

Instantly share code, notes, and snippets.

@pchw
Created April 4, 2018 00:09
Show Gist options
  • Save pchw/4af5d9045e4e4cca4ad206a9a09c5654 to your computer and use it in GitHub Desktop.
Save pchw/4af5d9045e4e4cca4ad206a9a09c5654 to your computer and use it in GitHub Desktop.
nta.go.jpのURLをnta-go.comで変換して遷移するようにするブックマークレット
javascript: (function() {document.querySelectorAll('a').forEach(function(e) {if (e.href) {var h = e.href;if (/https?:\/\/www\.nta\.go\.jp/.test(h)) {e.href = h.replace(/^http/, 'https://api.nta-go.com/redirect?url=http');e.text = '[★]' + e.text;}}});})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment