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' ;; |
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 |
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 |