/*
* @title TYJ HTML5
* @description goto flash-free interface on tonarinoyj
* @include http://tonarinoyj.jp/*
* @license MIT http://opensource.org/licenses/MIT
* @javascript_url
*/
// UserScript
// https://gist.github.com/noromanba/de83d473b64ca7c695d1
// ready to use @run-at document-start
// c.f. http://let.hatelabo.jp/noromanba/let/hLHXivn50ZRk
(function () {
if (/tonarinoyj\.jp$/.test(location.hostname) &&
/manga\/\w+\/[\w-]+/.test(location.pathname) &&
document.head.querySelector('script[src$="swfobject.js"]')) {
location.pathname = location.pathname + 'HTML5';
}
})();