himado To HTML5 Script (former To Flash Script)

ひまわり動画において、不具合の多いHTML5から自動でFLASHプレイヤに移動するスクリプトです。

Tính đến 02-02-2021. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        himado To HTML5 Script (former To Flash Script)
// @namespace   Scottie400
// @include     http://himado.in/*
// @exclude     http://himado.in/
// @exclude     http://himado.in/?keyword*
// @exclude     http://himado.in/?mode*
// @exclude     http://himado.in/?sort*
// @version     2.00
// @grant       none
// @description ひまわり動画において、不具合の多いHTML5から自動でFLASHプレイヤに移動するスクリプトです。
/* ***************************************************************************************************************
 ◆ひまわり動画において、不具合の多いHTML5から自動でFlashプレイヤーに移動するスクリプト……でしたが、
  Flashが終了したことに伴い、自動でHTML5プレイヤーに移動するスクリプトです。
  運営さんには早めにFlashプレイヤーを廃止して欲しいところです。

 ◆Greasemonkey(firefox)、Tampermonkey(Chorome,Opera)というアドオンが必要です。
  導入方法はこちらを要参照 ⇒ http://dic.nicovideo.jp/a/greasemonkey
  ユーザースクリプトとは? ⇒ https://greasyfork.org/

 ※Last Update : 2021-02-01
 ※ご使用は自己責任でお願いします。責任を負いかねます。
 ※推奨環境:Win7が普通に動く程度を満たすスペック・ちゃんと更新しているブラウザ
*************************************************************************************************************** */
// ==/UserScript==


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 編集不要範囲 ここから

$(function(){
    if(document.URL.match(/\/\d{6}$/)) {
      window.location.replace("http://himado.in/?id=" + $(location).attr('pathname').replace(/\//g,''));
      return false;
   } else if(document.URL.match(/\&flashplayer/)) {
      window.location.replace("http://himado.in/" + $(location).attr('search').replace(/\&flashplayer/g,''));
      return false;
   }
})();

// 編集不要範囲 ここまで
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////