View play_nhk-radio.sh
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
#!/bin/bash | |
# 下記を参考にしつつ作成 | |
# https://gist.github.com/matchy2/3956266 | |
# https://gist.github.com/saiten/1185755 | |
if [ $# -eq 1 ]; then | |
channel=$1 | |
case $1 in | |
r1) playpath='NetRadio_R1_flash@63346' ;; |
View Convert_iframe_to_link.js
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 Convert_iframe_to_link | |
// @namespace https://gist.github.com/ihsoy-s/ | |
// @version 0.2.3 | |
// @description Remove iframe tag and create link | |
// @include http://*/* | |
// @include https://*/* | |
// @match http://*/* | |
// @match https://*/* | |
// @run-at document-end |
View Disable_lazy_load.js
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 Disable_lazy_load | |
// @namespace https://gist.github.com/ihsoy-s/ | |
// @version 0.2 | |
// @description Remove lazy load | |
// @include http://*/* | |
// @include https://*/* | |
// @match http://*/* | |
// @match https://*/* | |
// @run-at document-end |