Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js
| // ==UserScript== | |
| // @name PetitLyrics Web Maker LRC Import | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @author Salmon Meuniere | |
| // @match https://petitlyrics.com/mypage/maker/line_input* | |
| // @description プチリリのWeb版の同期歌詞メーカーで、LRC形式を扱えるようになるスクリプトです。 | |
| // @grant none | |
| // ==/UserScript== |
| #!/usr/bin/env fish | |
| function rainbowify -d "Rainbow-ify text" | |
| set -l RAINBOW red FF8800 yellow green blue purple | |
| set LENGTH (string length $argv) | |
| set SPLIT (string split '' $argv) | |
| for i in (seq $LENGTH) | |
| set PERC (math -s2 $i / $LENGTH) |
Visit Gist and see 'raw' link, It's including SHA-1 long hash name like this.
https://gist.github.com/raw/2370972/47150711fedb7375d19d761ab122485b8105678d/gist-raw-perm-HEAD.user.js