Twitcas_visitors_notifier

  • /*
     * @title Twitcas_visitors_notifier
     * @description ツイキャスで配信中に来場者数が増えると音が鳴るブックマークレット 
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    
    (function() {
    //初期処理
       var pNow = 1, pSum = 1;
       audioElemN = new Audio();
       audioElemN.src = "http://rouken-komugi.sakura.ne.jp/sound/NewListener.mp3";
       audioElemC1 = new Audio();
       audioElemC1.src = "http://rouken-komugi.sakura.ne.jp/sound/ComeBack1.mp3";
       audioElemC2 = new Audio();
       audioElemC2.src = "http://rouken-komugi.sakura.ne.jp/sound/ComeBack2.mp3";
       audioElemC3 = new Audio();
       audioElemC3.src = "http://rouken-komugi.sakura.ne.jp/sound/ComeBack3.mp3";
    
    //自動表示される度に実行
    $(document).ajaxComplete(function(){
    	Visinoti();
    });
    function Visinoti(){
    //情報取得
       var RawData = document.getElementsByClassName("tw-fraction");
    //加工・格納
       var now = RawData[0].innerHTML.replace(/<.*?>\/<.*?>\d*/, '' ),
       sum = RawData[0].innerHTML.replace(/\d<.*?>\/<.*?>/, '' );
    //音声再生
       if ( sum > pSum ){
       audioElemN.play();
       } else if ( now > pNow ){
       var tempR = getRandomInt(2);
       if(tempR == 0){
          audioElemC1.play();
       }else if(tempR == 1){
          audioElemC2.play();
       }else{
          audioElemC3.play();
       }
    }
    //代入
    pNow = now,
    pSum = sum;
    }
    
    function getRandomInt(max) {
      return Math.floor(Math.random() * Math.floor(max));
    }
    
    })()
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2019/02/12 21:25:16 - 2019-02-12
  2. 2019/02/11 01:16:47 - 2019-02-11
  3. 2019/02/11 00:28:27 - 2019-02-11
  4. 2019/02/11 00:20:50 - 2019-02-11