예전에 한 번 올린 적 있는 이슈인데… 워낙 예전이고…. 예전 방법은 막혀있어서 새로 북마클릿을 만들었다.
코드는 아래와 같고, 북마클릿으로 만들어 쓰고 싶은 사람은 맨 아래 주석으로 처리된 한 줄을 복사해다가 만들면 된다.
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
(function(){ | |
var _playkey = "e6ba8f023e92bbb5aaf06052cd0c6551"; | |
var _iframes = document.querySelectorAll('iframe'); | |
var _audiourlpattern = new RegExp(/audio_file=[^&]*/g); | |
for(i=0;i<_iframes.length;i++){ | |
var _currentIframe = _iframes[i]; | |
var _audiofileurl = _currentIframe.src.match(_audiourlpattern); | |
if(_audiofileurl){ | |
_audiofileurl = _audiofileurl[0]; | |
_audiofileurl = decodeURIComponent(_audiofileurl) + "?play_key=" + _playkey; | |
_audiofileurl = _audiofileurl.substring(11); | |
var r = prompt("audio file url", _audiofileurl); | |
console.log(r); | |
return false; | |
} | |
} | |
})(); | |
/* | |
javascript:(function(){ var _playkey = "e6ba8f023e92bbb5aaf06052cd0c6551"; var _iframes = document.querySelectorAll('iframe'); var _audiourlpattern = new RegExp(/audio_file=[^&]+/g); for(i=0;i<_iframes.length;i++){ var _currentIframe = _iframes[i]; var _audiofileurl = _currentIframe.src.match(_audiourlpattern); if(_audiofileurl){ _audiofileurl = _audiofileurl[0]; _audiofileurl = decodeURIComponent(_audiofileurl) + "?play_key=" + _playkey; _audiofileurl = _audiofileurl.substring(11); var r = prompt("audio file url", _audiofileurl); console.log(r); return false; } } })(); | |
*/ |