一秒取得 巴哈姆特動畫瘋 全觀看記錄


需求

  • 為了保存觀看記錄,所以寫程式一秒自動複製帶走目前的所有記錄。

  • 因為巴哈姆特動畫瘋的動畫瀏覽記錄,本身有上限值。
    新的看太多,舊的記錄就不見了。就忘記看過哪些了

使用方式

  1. 打開 Chrome,隨喜好找個巴哈的網頁登入巴哈姆特帳號。

  2. 按下 F12

  3. 切到 console 介面

  4. 複製以下的 JavaScript code,並貼到 Chrome console 裡面後 Enter 執行。
    目前有兩個版本 JavaScript code 可以用:
    JavaScript code 自動複製看過的動畫純文字:看過動畫作品名跟 URL 連結
    JavaScript code 改良版:自動複製看過各話動畫觀看時間及各話 URL 連結
    請挑喜歡的使用。
    因為以下兩點執行時的特性,所以在哪裡都可以用:

    1. 如果網址不是巴哈姆特動畫瘋的瀏覽記錄,會自動跳過去。
      到時候,再執行一次就會自動複製瀏覽記錄成純文字可以儲存。

    2. 如果網址本來就是巴哈姆特動畫瘋瀏覽記錄。
      會自動複製瀏覽記錄成純文字可以儲存。

  • 複製文字到剪貼簿是由 Chrome console 才能用的 copy() function 實現。
    如果沒有順利自動複製,可以看 Chrome console 也有一樣的輸出。
    可以另外手動複製,但一般情況是會自動複製。


JavaScript code 自動複製看過的動畫純文字

JavaScript:

function copy(text) {
    if(text!=''){
        const textarea = document.createElement('textarea');
        textarea.value = text;
        document.body.appendChild(textarea);
    
        textarea.select();
        textarea.setSelectionRange(0, 99999); 
    
        document.execCommand('copy');
    
        document.body.removeChild(textarea);
        console.log('已複製 = \n\n' + text);    
    }
}

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let num = 0;
    let out = '巴哈姆特動畫瘋 觀看記錄一秒複製\n' + document.location.href + '\n\n';
    
    for (key in document.getElementsByClassName('history-anime-title')) {
      if(document.getElementsByClassName('history-anime-title')[key].innerText != undefined){
        num++;
        out += document.getElementsByClassName('history-anime-title')[key].innerText + '\n' + document.getElementsByClassName('click-area')[key].href + '\n\n';  
      } 
    }

    out += get_time_text(new Date()) + '\n總輸出:' + num + ' 筆看過的動畫作品。';
    
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

/*用於印出時間的顯示設定*/
function get_time_text(timecode){
  let time_obj = new Date(timecode);
  const week_name = ['日','一','二','三','四','五','六'];

    return (
      time_obj.getFullYear() + '\/' + 
      (  ((+(time_obj.getMonth())+1)<10)? '0'+(+(time_obj.getMonth())+1) : (+(time_obj.getMonth())+1)  ) + '\/' +
      ((time_obj.getDate()<10)?('0'+time_obj.getDate()):time_obj.getDate()) + ' ' +
      time_obj.toLocaleTimeString('en-US',{
                                              hour: '2-digit',  
                                              minute: '2-digit',
                                              second: '2-digit',
                                            }) + 
      '(週' + week_name[time_obj.getDay()] +  ')'   
      );
}

複製出來的文字會是這樣子

巴哈姆特動畫瘋 觀看記錄一秒複製
https://ani.gamer.com.tw/viewList.php

無職轉生~到了異世界就拿出真本事 第二季
https://ani.gamer.com.tw/animeVideo.php?sn=34214

國王排名 勇氣的寶箱
https://ani.gamer.com.tw/animeVideo.php?sn=33369

【我推的孩子】
https://ani.gamer.com.tw/animeVideo.php?sn=33827

不相信人類的冒險者們好像要去拯救世界
https://ani.gamer.com.tw/animeVideo.php?sn=33093

無神世界的神明活動
https://ani.gamer.com.tw/animeVideo.php?sn=33823

鬼滅之刃 刀匠村篇
https://ani.gamer.com.tw/animeVideo.php?sn=33792

甜點轉生
https://ani.gamer.com.tw/animeVideo.php?sn=34130

AYAKA -綾島奇譚-
https://ani.gamer.com.tw/animeVideo.php?sn=34050

肌肉魔法使-MASHLE-
https://ani.gamer.com.tw/animeVideo.php?sn=33837

為美好的世界獻上爆焰!
https://ani.gamer.com.tw/animeVideo.php?sn=33826

Opus.COLORs 色彩高校星
https://ani.gamer.com.tw/animeVideo.php?sn=33832

勇者死了!
https://ani.gamer.com.tw/animeVideo.php?sn=33831

刀劍神域劇場版-Progressive-陰沉薄暮的詼諧曲
https://ani.gamer.com.tw/animeVideo.php?sn=33944

我讓最想被擁抱的男人給威脅了 劇場版~西班牙篇~
https://ani.gamer.com.tw/animeVideo.php?sn=29076

轉生貴族的異世界冒險錄~不知自重的眾神使徒~
https://ani.gamer.com.tw/animeVideo.php?sn=33794

吸血鬼馬上死 第二季
https://ani.gamer.com.tw/animeVideo.php?sn=32567

我家的英雄
https://ani.gamer.com.tw/animeVideo.php?sn=33793

無論何時我們的戀情都是10厘米。
https://ani.gamer.com.tw/animeVideo.php?sn=32616

呆萌酷男孩
https://ani.gamer.com.tw/animeVideo.php?sn=33150

劇場版 擅長捉弄人的高木同學
https://ani.gamer.com.tw/animeVideo.php?sn=32324

第二次被異世界召喚
https://ani.gamer.com.tw/animeVideo.php?sn=33569

劇場版 歌之☆王子殿下♪ 真愛 ST☆RISH TOURS
https://ani.gamer.com.tw/animeVideo.php?sn=33393

TRIGUN STAMPEDE
https://ani.gamer.com.tw/animeVideo.php?sn=32341

交錯的想念
https://ani.gamer.com.tw/animeVideo.php?sn=28808

Buddy Daddies 殺手奶爸
https://ani.gamer.com.tw/animeVideo.php?sn=33276

冰劍的魔術師將要統一世界
https://ani.gamer.com.tw/animeVideo.php?sn=33115

2023/07/24 04:42:51 PM(週一)
總輸出:26 筆看過的動畫作品。

原理

  • 抓出所有項目 CSS ClassName 符合 'history-anime-title' 的元素。

  • 這些項目中其屬性, .innerText 要有內容才輸出。

    • if(document.getElementsByClassName('history-anime-title')[key].innerText != undefined

  • 'history-anime-title' 負責動畫標題,'click-area' 負責動畫 URL。
    透過觀察法發現,兩者剛好數量一致。
    所以才會使用一個 for....in 迴圈就解決。

    • 如果兩邊數量不同的時候,
      也許需要兩個迴圈分別取出要的,再做資料整合。


JavaScript code 改良版:輸出更多細節
自動複製看過各話動畫純文字

JavaScript:

function copy(text) {
    if(text!=''){
        const textarea = document.createElement('textarea');
        textarea.value = text;
        document.body.appendChild(textarea);
    
        textarea.select();
        textarea.setSelectionRange(0, 99999); 
    
        document.execCommand('copy');
    
        document.body.removeChild(textarea);
        console.log('已複製 = \n\n' + text);    
    }
}

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一秒複製\n' + document.location.href + '\n\n';
    let num = 0;    
    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            out = out.replace(/(.*)\n\n$/gi,'$1');
            out += '\n\n' + get_time_text(new Date()) + '\n總輸出:' + num + ' 筆觀看記錄';
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                num++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ') + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
    
            }
        }
    }
    
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

/*用於印出時間的顯示設定*/
function get_time_text(timecode){
  let time_obj = new Date(timecode);
  const week_name = ['日','一','二','三','四','五','六'];

    return (
      time_obj.getFullYear() + '\/' + 
      (  ((+(time_obj.getMonth())+1)<10)? '0'+(+(time_obj.getMonth())+1) : (+(time_obj.getMonth())+1)  ) + '\/' +
      ((time_obj.getDate()<10)?('0'+time_obj.getDate()):time_obj.getDate()) + ' ' +
      time_obj.toLocaleTimeString('en-US',{
                                              hour: '2-digit',  
                                              minute: '2-digit',
                                              second: '2-digit',
                                            }) + 
      '(週' + week_name[time_obj.getDay()] +  ')'   
      );
}

自動複製的文字會是這樣子

巴哈姆特動畫瘋 觀看記錄一秒複製
https://ani.gamer.com.tw/viewList.php

無職轉生~到了異世界就拿出真本事 第二季 [3] (15 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=34214

無職轉生~到了異世界就拿出真本事 第二季 [2] (2023/07/20 00:40)
https://ani.gamer.com.tw/animeVideo.php?sn=34213

無職轉生~到了異世界就拿出真本事 第二季 [1] (2023/07/20 00:39)
https://ani.gamer.com.tw/animeVideo.php?sn=34092

無職轉生~到了異世界就拿出真本事 第二季 [1] [特別篇] (2023/07/15 01:15)
https://ani.gamer.com.tw/animeVideo.php?sn=34047

國王排名 勇氣的寶箱 [3] (15 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33369

國王排名 勇氣的寶箱 [2] (16 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33326

國王排名 勇氣的寶箱 [1] (16 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33317

國王排名 勇氣的寶箱 [5] (昨天 03:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33529

國王排名 勇氣的寶箱 [4] (昨天 02:45)
https://ani.gamer.com.tw/animeVideo.php?sn=33455

【我推的孩子】 [11] (2023/07/21 00:43)
https://ani.gamer.com.tw/animeVideo.php?sn=33827

【我推的孩子】 [10] (2023/06/30 23:42)
https://ani.gamer.com.tw/animeVideo.php?sn=33779

【我推的孩子】 [9] (2023/06/30 23:41)
https://ani.gamer.com.tw/animeVideo.php?sn=33714

【我推的孩子】 [8] (2023/06/15 23:00)
https://ani.gamer.com.tw/animeVideo.php?sn=33700

【我推的孩子】 [7] (2023/05/27 03:42)
https://ani.gamer.com.tw/animeVideo.php?sn=33659

【我推的孩子】 [6] (2023/05/25 00:25)
https://ani.gamer.com.tw/animeVideo.php?sn=33551

【我推的孩子】 [5] (2023/05/20 01:32)
https://ani.gamer.com.tw/animeVideo.php?sn=33521

【我推的孩子】 [4] (2023/05/20 01:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33392

【我推的孩子】 [3] (2023/05/20 00:42)
https://ani.gamer.com.tw/animeVideo.php?sn=33314

【我推的孩子】 [2] (2023/05/20 00:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33313

【我推的孩子】 [1] (2023/05/19 23:19)
https://ani.gamer.com.tw/animeVideo.php?sn=33312

不相信人類的冒險者們好像要去拯救世界 [12] (2023/07/21 00:30)
https://ani.gamer.com.tw/animeVideo.php?sn=33093

不相信人類的冒險者們好像要去拯救世界 [11] (2023/06/21 21:55)
https://ani.gamer.com.tw/animeVideo.php?sn=33049

不相信人類的冒險者們好像要去拯救世界 [10] (2023/06/21 00:24)
https://ani.gamer.com.tw/animeVideo.php?sn=33014

不相信人類的冒險者們好像要去拯救世界 [9] (2023/06/20 21:09)
https://ani.gamer.com.tw/animeVideo.php?sn=32819

不相信人類的冒險者們好像要去拯救世界 [8] (2023/06/20 21:08)
https://ani.gamer.com.tw/animeVideo.php?sn=32637

無神世界的神明活動 [12] (2023/07/21 00:19)
https://ani.gamer.com.tw/animeVideo.php?sn=33823

無神世界的神明活動 [11] (2023/07/20 02:07)
https://ani.gamer.com.tw/animeVideo.php?sn=33822

無神世界的神明活動 [10] (2023/07/04 01:23)
https://ani.gamer.com.tw/animeVideo.php?sn=33716

無神世界的神明活動 [9] (2023/06/15 23:34)
https://ani.gamer.com.tw/animeVideo.php?sn=33702

無神世界的神明活動 [8] (2023/06/07 01:03)
https://ani.gamer.com.tw/animeVideo.php?sn=33661

無神世界的神明活動 [7] (2023/06/07 00:35)
https://ani.gamer.com.tw/animeVideo.php?sn=33553

無神世界的神明活動 [6] (2023/06/07 00:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33524

無神世界的神明活動 [5] (2023/06/06 23:31)
https://ani.gamer.com.tw/animeVideo.php?sn=33450

無神世界的神明活動 [4] (2023/06/06 23:05)
https://ani.gamer.com.tw/animeVideo.php?sn=33449

無神世界的神明活動 [3] (2023/06/06 22:53)
https://ani.gamer.com.tw/animeVideo.php?sn=33448

鬼滅之刃 刀匠村篇 [11] (2023/07/20 01:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33792

鬼滅之刃 刀匠村篇 [10] (2023/07/15 22:00)
https://ani.gamer.com.tw/animeVideo.php?sn=33763

鬼滅之刃 刀匠村篇 [9] (2023/07/09 21:40)
https://ani.gamer.com.tw/animeVideo.php?sn=33762

鬼滅之刃 刀匠村篇 [8] (2023/07/05 01:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33680

鬼滅之刃 刀匠村篇 [7] (2023/06/05 23:53)
https://ani.gamer.com.tw/animeVideo.php?sn=33573

鬼滅之刃 刀匠村篇 [6] (2023/06/05 23:53)
https://ani.gamer.com.tw/animeVideo.php?sn=33542

鬼滅之刃 刀匠村篇 [5] (2023/05/17 00:53)
https://ani.gamer.com.tw/animeVideo.php?sn=33468

鬼滅之刃 刀匠村篇 [4] (2023/05/11 00:26)
https://ani.gamer.com.tw/animeVideo.php?sn=33382

鬼滅之刃 刀匠村篇 [3] (2023/05/03 20:24)
https://ani.gamer.com.tw/animeVideo.php?sn=33350

鬼滅之刃 刀匠村篇 [2] (2023/05/01 04:35)
https://ani.gamer.com.tw/animeVideo.php?sn=33349

甜點轉生 [4] (2023/07/20 00:15)
https://ani.gamer.com.tw/animeVideo.php?sn=34130

甜點轉生 [3] (2023/07/14 12:31)
https://ani.gamer.com.tw/animeVideo.php?sn=34129

甜點轉生 [2] (2023/07/09 21:39)
https://ani.gamer.com.tw/animeVideo.php?sn=34054

甜點轉生 [1] (2023/07/06 23:38)
https://ani.gamer.com.tw/animeVideo.php?sn=34053

AYAKA  -綾島奇譚- [1] (2023/07/14 13:42)
https://ani.gamer.com.tw/animeVideo.php?sn=34050

肌肉魔法使-MASHLE- [12] (2023/07/05 00:44)
https://ani.gamer.com.tw/animeVideo.php?sn=33837

肌肉魔法使-MASHLE- [11] (2023/07/05 00:42)
https://ani.gamer.com.tw/animeVideo.php?sn=33836

肌肉魔法使-MASHLE- [10] (2023/06/28 22:49)
https://ani.gamer.com.tw/animeVideo.php?sn=33790

肌肉魔法使-MASHLE- [9] (2023/06/12 22:10)
https://ani.gamer.com.tw/animeVideo.php?sn=33739

肌肉魔法使-MASHLE- [8] (2023/06/07 20:58)
https://ani.gamer.com.tw/animeVideo.php?sn=33738

肌肉魔法使-MASHLE- [7] (2023/06/04 00:22)
https://ani.gamer.com.tw/animeVideo.php?sn=33668

肌肉魔法使-MASHLE- [6.5] (2023/05/27 05:07)
https://ani.gamer.com.tw/animeVideo.php?sn=33562

肌肉魔法使-MASHLE- [6] (2023/05/27 05:05)
https://ani.gamer.com.tw/animeVideo.php?sn=33531

肌肉魔法使-MASHLE- [5] (2023/05/13 04:39)
https://ani.gamer.com.tw/animeVideo.php?sn=33457

肌肉魔法使-MASHLE- [4] (2023/05/13 04:37)
https://ani.gamer.com.tw/animeVideo.php?sn=33371

肌肉魔法使-MASHLE- [3] (2023/05/02 19:16)
https://ani.gamer.com.tw/animeVideo.php?sn=33330

為美好的世界獻上爆焰! [12] (2023/07/04 00:59)
https://ani.gamer.com.tw/animeVideo.php?sn=33826

為美好的世界獻上爆焰! [11] (2023/07/01 23:32)
https://ani.gamer.com.tw/animeVideo.php?sn=33780

為美好的世界獻上爆焰! [10] (2023/06/17 04:38)
https://ani.gamer.com.tw/animeVideo.php?sn=33715

為美好的世界獻上爆焰! [9] (2023/06/17 04:15)
https://ani.gamer.com.tw/animeVideo.php?sn=33701

為美好的世界獻上爆焰! [8] (2023/06/17 03:52)
https://ani.gamer.com.tw/animeVideo.php?sn=33660

為美好的世界獻上爆焰! [7] (2023/06/17 03:27)
https://ani.gamer.com.tw/animeVideo.php?sn=33552

為美好的世界獻上爆焰! [6] (2023/06/17 03:03)
https://ani.gamer.com.tw/animeVideo.php?sn=33523

為美好的世界獻上爆焰! [5] (2023/06/17 02:33)
https://ani.gamer.com.tw/animeVideo.php?sn=33522

為美好的世界獻上爆焰! [4] (2023/06/09 03:32)
https://ani.gamer.com.tw/animeVideo.php?sn=33363

為美好的世界獻上爆焰! [3] (2023/06/09 03:22)
https://ani.gamer.com.tw/animeVideo.php?sn=33316

Opus.COLORs 色彩高校星 [12] (2023/07/04 00:31)
https://ani.gamer.com.tw/animeVideo.php?sn=33832

Opus.COLORs 色彩高校星 [11] (2023/07/04 00:30)
https://ani.gamer.com.tw/animeVideo.php?sn=33787

Opus.COLORs 色彩高校星 [10] (2023/06/12 22:41)
https://ani.gamer.com.tw/animeVideo.php?sn=33733

Opus.COLORs 色彩高校星 [9] (2023/06/12 22:40)
https://ani.gamer.com.tw/animeVideo.php?sn=33732

Opus.COLORs 色彩高校星 [8] (2023/06/05 21:27)
https://ani.gamer.com.tw/animeVideo.php?sn=33665

Opus.COLORs 色彩高校星 [7] (2023/06/05 01:09)
https://ani.gamer.com.tw/animeVideo.php?sn=33557

Opus.COLORs 色彩高校星 [6] (2023/05/15 04:48)
https://ani.gamer.com.tw/animeVideo.php?sn=33528

Opus.COLORs 色彩高校星 [5] (2023/05/15 04:26)
https://ani.gamer.com.tw/animeVideo.php?sn=33454

Opus.COLORs 色彩高校星 [4] (2023/05/15 04:26)
https://ani.gamer.com.tw/animeVideo.php?sn=33368

Opus.COLORs 色彩高校星 [3] (2023/05/06 02:54)
https://ani.gamer.com.tw/animeVideo.php?sn=33325

勇者死了! [12] (2023/07/04 00:21)
https://ani.gamer.com.tw/animeVideo.php?sn=33831

勇者死了! [11] (2023/07/03 00:05)
https://ani.gamer.com.tw/animeVideo.php?sn=33788

勇者死了! [10] (2023/06/16 23:34)
https://ani.gamer.com.tw/animeVideo.php?sn=33735

勇者死了! [9] (2023/06/16 00:13)
https://ani.gamer.com.tw/animeVideo.php?sn=33734

勇者死了! [8] (2023/06/03 23:48)
https://ani.gamer.com.tw/animeVideo.php?sn=33666

勇者死了! [7] (2023/06/03 01:21)
https://ani.gamer.com.tw/animeVideo.php?sn=33559

勇者死了! [6] (2023/05/27 05:36)
https://ani.gamer.com.tw/animeVideo.php?sn=33558

勇者死了! [5] (2023/05/15 04:18)
https://ani.gamer.com.tw/animeVideo.php?sn=33456

勇者死了! [4] (2023/05/13 06:13)
https://ani.gamer.com.tw/animeVideo.php?sn=33370

勇者死了! [3] (2023/05/01 04:36)
https://ani.gamer.com.tw/animeVideo.php?sn=33328

勇者死了! [2] (2023/04/29 23:56)
https://ani.gamer.com.tw/animeVideo.php?sn=33327

勇者死了! [1] (2023/04/29 01:43)
https://ani.gamer.com.tw/animeVideo.php?sn=33259

刀劍神域劇場版-Progressive-陰沉薄暮的詼諧曲 [電影] (2023/06/29 22:06)
https://ani.gamer.com.tw/animeVideo.php?sn=33944

我讓最想被擁抱的男人給威脅了 劇場版~西班牙篇~ [電影] (2023/06/23 04:26)
https://ani.gamer.com.tw/animeVideo.php?sn=29076

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [12] (2023/06/23 04:02)
https://ani.gamer.com.tw/animeVideo.php?sn=33794

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [11] (2023/06/12 23:35)
https://ani.gamer.com.tw/animeVideo.php?sn=33759

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [10] (2023/06/05 00:47)
https://ani.gamer.com.tw/animeVideo.php?sn=33758

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [9] (2023/06/05 00:46)
https://ani.gamer.com.tw/animeVideo.php?sn=33678

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [8] (2023/06/02 00:14)
https://ani.gamer.com.tw/animeVideo.php?sn=33571

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [7] (2023/05/30 03:54)
https://ani.gamer.com.tw/animeVideo.php?sn=33540

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [6] (2023/05/17 01:19)
https://ani.gamer.com.tw/animeVideo.php?sn=33466

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [5] (2023/05/09 23:20)
https://ani.gamer.com.tw/animeVideo.php?sn=33380

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [4] (2023/05/06 03:20)
https://ani.gamer.com.tw/animeVideo.php?sn=33346

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [3] (2023/04/26 02:41)
https://ani.gamer.com.tw/animeVideo.php?sn=33345

吸血鬼馬上死 第二季 [5] (2023/06/22 02:30)
https://ani.gamer.com.tw/animeVideo.php?sn=32567

吸血鬼馬上死 第二季 [4] (2023/06/22 02:06)
https://ani.gamer.com.tw/animeVideo.php?sn=32473

吸血鬼馬上死 第二季 [3] (2023/06/22 01:42)
https://ani.gamer.com.tw/animeVideo.php?sn=32472

吸血鬼馬上死 第二季 [2] (2023/06/22 01:19)
https://ani.gamer.com.tw/animeVideo.php?sn=32431

吸血鬼馬上死 第二季 [1] (2023/06/22 00:55)
https://ani.gamer.com.tw/animeVideo.php?sn=32361

吸血鬼馬上死 第二季 [12] (2023/06/18 03:14)
https://ani.gamer.com.tw/animeVideo.php?sn=33147

吸血鬼馬上死 第二季 [11] (2023/06/18 02:39)
https://ani.gamer.com.tw/animeVideo.php?sn=33074

吸血鬼馬上死 第二季 [10] (2023/06/18 01:53)
https://ani.gamer.com.tw/animeVideo.php?sn=33004

吸血鬼馬上死 第二季 [9] (2023/06/18 01:23)
https://ani.gamer.com.tw/animeVideo.php?sn=33003

吸血鬼馬上死 第二季 [8] (2023/06/18 01:09)
https://ani.gamer.com.tw/animeVideo.php?sn=32814

我家的英雄 [12] (2023/06/22 00:30)
https://ani.gamer.com.tw/animeVideo.php?sn=33793

我家的英雄 [11] (2023/06/22 00:07)
https://ani.gamer.com.tw/animeVideo.php?sn=33761

我家的英雄 [10] (2023/06/22 00:06)
https://ani.gamer.com.tw/animeVideo.php?sn=33760

我家的英雄 [9] (2023/06/05 23:22)
https://ani.gamer.com.tw/animeVideo.php?sn=33679

我家的英雄 [8] (2023/05/30 03:26)
https://ani.gamer.com.tw/animeVideo.php?sn=33572

我家的英雄 [7] (2023/05/27 04:41)
https://ani.gamer.com.tw/animeVideo.php?sn=33541

我家的英雄 [6] (2023/05/17 01:47)
https://ani.gamer.com.tw/animeVideo.php?sn=33467

我家的英雄 [5] (2023/05/13 05:46)
https://ani.gamer.com.tw/animeVideo.php?sn=33381

我家的英雄 [4] (2023/05/02 00:11)
https://ani.gamer.com.tw/animeVideo.php?sn=33348

我家的英雄 [3] (2023/04/27 01:51)
https://ani.gamer.com.tw/animeVideo.php?sn=33347

無論何時我們的戀情都是10厘米。 [5] (2023/06/18 05:26)
https://ani.gamer.com.tw/animeVideo.php?sn=32616

無論何時我們的戀情都是10厘米。 [4] (2023/06/18 05:02)
https://ani.gamer.com.tw/animeVideo.php?sn=32615

無論何時我們的戀情都是10厘米。 [3] (2023/06/18 04:37)
https://ani.gamer.com.tw/animeVideo.php?sn=32614

無論何時我們的戀情都是10厘米。 [2] (2023/06/18 04:13)
https://ani.gamer.com.tw/animeVideo.php?sn=32613

無論何時我們的戀情都是10厘米。 [1] (2023/06/18 04:00)
https://ani.gamer.com.tw/animeVideo.php?sn=32612

呆萌酷男孩 [24] (2023/06/18 03:57)
https://ani.gamer.com.tw/animeVideo.php?sn=33150

劇場版 擅長捉弄人的高木同學 [電影] (2023/06/18 03:57)
https://ani.gamer.com.tw/animeVideo.php?sn=32324

第二次被異世界召喚 [7] (2023/06/13 00:01)
https://ani.gamer.com.tw/animeVideo.php?sn=33569

第二次被異世界召喚 [6] (2023/05/27 04:16)
https://ani.gamer.com.tw/animeVideo.php?sn=33537

第二次被異世界召喚 [5] (2023/05/17 03:23)
https://ani.gamer.com.tw/animeVideo.php?sn=33463

第二次被異世界召喚 [4] (2023/05/14 22:10)
https://ani.gamer.com.tw/animeVideo.php?sn=33377

第二次被異世界召喚 [3] (2023/05/14 22:10)
https://ani.gamer.com.tw/animeVideo.php?sn=33364

第二次被異世界召喚 [2] (2023/05/03 02:11)
https://ani.gamer.com.tw/animeVideo.php?sn=33356

第二次被異世界召喚 [1] (2023/04/30 22:57)
https://ani.gamer.com.tw/animeVideo.php?sn=33355

劇場版 歌之☆王子殿下♪ 真愛 ST☆RISH TOURS [電影] (2023/06/09 01:47)
https://ani.gamer.com.tw/animeVideo.php?sn=33393

TRIGUN STAMPEDE [1] (2023/06/06 22:52)
https://ani.gamer.com.tw/animeVideo.php?sn=32341

交錯的想念 [電影] (2023/05/17 03:22)
https://ani.gamer.com.tw/animeVideo.php?sn=28808

Buddy Daddies 殺手奶爸 [12] (2023/04/28 01:04)
https://ani.gamer.com.tw/animeVideo.php?sn=33276

Buddy Daddies 殺手奶爸 [11] (2023/04/28 00:36)
https://ani.gamer.com.tw/animeVideo.php?sn=33158

Buddy Daddies 殺手奶爸 [10] (2023/04/28 00:07)
https://ani.gamer.com.tw/animeVideo.php?sn=33068

Buddy Daddies 殺手奶爸 [9] (2023/04/27 19:17)
https://ani.gamer.com.tw/animeVideo.php?sn=33029

Buddy Daddies 殺手奶爸 [8.5] (2023/04/26 05:57)
https://ani.gamer.com.tw/animeVideo.php?sn=32836

Buddy Daddies 殺手奶爸 [8] (2023/04/26 05:34)
https://ani.gamer.com.tw/animeVideo.php?sn=32703

Buddy Daddies 殺手奶爸 [7] (2023/04/26 05:06)
https://ani.gamer.com.tw/animeVideo.php?sn=32702

Buddy Daddies 殺手奶爸 [6] (2023/04/26 04:34)
https://ani.gamer.com.tw/animeVideo.php?sn=32590

Buddy Daddies 殺手奶爸 [5] (2023/04/26 04:10)
https://ani.gamer.com.tw/animeVideo.php?sn=32520

Buddy Daddies 殺手奶爸 [4] (2023/04/26 03:41)
https://ani.gamer.com.tw/animeVideo.php?sn=32519

Buddy Daddies 殺手奶爸 [3] (2023/04/26 03:12)
https://ani.gamer.com.tw/animeVideo.php?sn=32453

冰劍的魔術師將要統一世界 [12] (2023/04/26 02:15)
https://ani.gamer.com.tw/animeVideo.php?sn=33115

冰劍的魔術師將要統一世界 [11] (2023/04/26 02:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33063

冰劍的魔術師將要統一世界 [8] (2023/04/26 00:27)
https://ani.gamer.com.tw/animeVideo.php?sn=32691

冰劍的魔術師將要統一世界 [10] (2023/04/26 00:09)
https://ani.gamer.com.tw/animeVideo.php?sn=33023

2023/07/24 04:50:46 PM(週一)
總輸出:157 筆觀看記錄

說明

  • 從原本抓 CSS ClassName 符合 'history-anime-title' 的元素,
    列出 'history-anime-title' 標題及 ClassName 'click-area' 得到 URL 網址。
    改為抓特定條件的 a tag,a tag 自動有 href 屬性有 URL 網址。

    • 條件為 a tag 的:

      • 自訂屬性 data-gtm = '觀看紀錄卡片',且

      • .innerText 屬性值 不等於 空值,且

      • .innerText 屬性值 不包含 '下一話'。

  • 並透過 .querySelector('div.history-list-anime-title').innerText 的方式,
    拿到 a tag 內div 標籤 CSS 屬性為 'history-list-anime-title' 的 innerText 標題

  • 並透過 .querySelector('div.date').innerText 的方式,拿到 a tag 內div 標籤 CSS 屬性為 'date' 的 觀看時間。

  • 時間的格式有點看不習慣,透過
    .replace(/.\s/g,'/').replace(/\s\s/g,' ')
    來處理成 2023/07/24 12:00 這種顯示方式。

  • 尚未讓他自動存檔成檔案,一樣是自動複製純文字到剪貼簿。


另一種輸出格式
把每個觀看記錄是星期幾也顯示出來

JavaScript:

function copy(text) {
    if(text!=''){
        const textarea = document.createElement('textarea');
        textarea.value = text;
        document.body.appendChild(textarea);
    
        textarea.select();
        textarea.setSelectionRange(0, 99999); 
    
        document.execCommand('copy');
    
        document.body.removeChild(textarea);
        console.log('已複製 = \n\n' + text);    
    }
}

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一秒複製\n' + document.location.href + '\n\n';
    let num = 0;    
    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            out = out.replace(/(.*)\n\n$/gi,'$1');
            out += '\n\n' + get_time_text(new Date()) + '\n總輸出:' + num + ' 筆觀看記錄';
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                num++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + get_time_text(document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ')) + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
    
            }
        }
    }
   
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

/*用於印出時間的顯示設定*/
function get_time_text(timecode){
  let time_obj = new Date(timecode);
  if(time_obj=='Invalid Date'){
      return timecode;
  }
  const week_name = ['日','一','二','三','四','五','六'];

    return (
      time_obj.getFullYear() + '\/' + 
      (  ((+(time_obj.getMonth())+1)<10)? '0'+(+(time_obj.getMonth())+1) : (+(time_obj.getMonth())+1)  ) + '\/' +
      ((time_obj.getDate()<10)?('0'+time_obj.getDate()):time_obj.getDate()) + ' ' +
      time_obj.toLocaleTimeString('en-US',{
                                              hour: '2-digit',  
                                              minute: '2-digit',
                                              /*second: '2-digit',*/
                                            }) + 
      ' [週' + week_name[time_obj.getDay()] +  ']'   
      );
}

得到

巴哈姆特動畫瘋 觀看記錄一秒複製
https://ani.gamer.com.tw/viewList.php

無職轉生~到了異世界就拿出真本事 第二季 [3] (15 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=34214

無職轉生~到了異世界就拿出真本事 第二季 [2] (2023/07/20 12:40 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=34213

無職轉生~到了異世界就拿出真本事 第二季 [1] (2023/07/20 12:39 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=34092

無職轉生~到了異世界就拿出真本事 第二季 [1] [特別篇] (2023/07/15 01:15 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=34047

國王排名 勇氣的寶箱 [3] (15 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33369

國王排名 勇氣的寶箱 [2] (16 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33326

國王排名 勇氣的寶箱 [1] (16 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=33317

國王排名 勇氣的寶箱 [5] (昨天 03:08)
https://ani.gamer.com.tw/animeVideo.php?sn=33529

國王排名 勇氣的寶箱 [4] (昨天 02:45)
https://ani.gamer.com.tw/animeVideo.php?sn=33455

【我推的孩子】 [11] (2023/07/21 12:43 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33827

【我推的孩子】 [10] (2023/06/30 11:42 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33779

【我推的孩子】 [9] (2023/06/30 11:41 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33714

【我推的孩子】 [8] (2023/06/15 11:00 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33700

【我推的孩子】 [7] (2023/05/27 03:42 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33659

【我推的孩子】 [6] (2023/05/25 12:25 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33551

【我推的孩子】 [5] (2023/05/20 01:32 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33521

【我推的孩子】 [4] (2023/05/20 01:08 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33392

【我推的孩子】 [3] (2023/05/20 12:42 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33314

【我推的孩子】 [2] (2023/05/20 12:08 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33313

【我推的孩子】 [1] (2023/05/19 11:19 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33312

不相信人類的冒險者們好像要去拯救世界 [12] (2023/07/21 12:30 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33093

不相信人類的冒險者們好像要去拯救世界 [11] (2023/06/21 09:55 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33049

不相信人類的冒險者們好像要去拯救世界 [10] (2023/06/21 12:24 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33014

不相信人類的冒險者們好像要去拯救世界 [9] (2023/06/20 09:09 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=32819

不相信人類的冒險者們好像要去拯救世界 [8] (2023/06/20 09:08 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=32637

無神世界的神明活動 [12] (2023/07/21 12:19 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33823

無神世界的神明活動 [11] (2023/07/20 02:07 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33822

無神世界的神明活動 [10] (2023/07/04 01:23 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33716

無神世界的神明活動 [9] (2023/06/15 11:34 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33702

無神世界的神明活動 [8] (2023/06/07 01:03 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33661

無神世界的神明活動 [7] (2023/06/07 12:35 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33553

無神世界的神明活動 [6] (2023/06/07 12:08 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33524

無神世界的神明活動 [5] (2023/06/06 11:31 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33450

無神世界的神明活動 [4] (2023/06/06 11:05 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33449

無神世界的神明活動 [3] (2023/06/06 10:53 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33448

鬼滅之刃 刀匠村篇 [11] (2023/07/20 01:08 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33792

鬼滅之刃 刀匠村篇 [10] (2023/07/15 10:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33763

鬼滅之刃 刀匠村篇 [9] (2023/07/09 09:40 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33762

鬼滅之刃 刀匠村篇 [8] (2023/07/05 01:08 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33680

鬼滅之刃 刀匠村篇 [7] (2023/06/05 11:53 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33573

鬼滅之刃 刀匠村篇 [6] (2023/06/05 11:53 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33542

鬼滅之刃 刀匠村篇 [5] (2023/05/17 12:53 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33468

鬼滅之刃 刀匠村篇 [4] (2023/05/11 12:26 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33382

鬼滅之刃 刀匠村篇 [3] (2023/05/03 08:24 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33350

鬼滅之刃 刀匠村篇 [2] (2023/05/01 04:35 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33349

甜點轉生 [4] (2023/07/20 12:15 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=34130

甜點轉生 [3] (2023/07/14 12:31 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=34129

甜點轉生 [2] (2023/07/09 09:39 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=34054

甜點轉生 [1] (2023/07/06 11:38 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=34053

AYAKA  -綾島奇譚- [1] (2023/07/14 01:42 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=34050

肌肉魔法使-MASHLE- [12] (2023/07/05 12:44 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33837

肌肉魔法使-MASHLE- [11] (2023/07/05 12:42 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33836

肌肉魔法使-MASHLE- [10] (2023/06/28 10:49 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33790

肌肉魔法使-MASHLE- [9] (2023/06/12 10:10 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33739

肌肉魔法使-MASHLE- [8] (2023/06/07 08:58 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33738

肌肉魔法使-MASHLE- [7] (2023/06/04 12:22 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33668

肌肉魔法使-MASHLE- [6.5] (2023/05/27 05:07 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33562

肌肉魔法使-MASHLE- [6] (2023/05/27 05:05 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33531

肌肉魔法使-MASHLE- [5] (2023/05/13 04:39 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33457

肌肉魔法使-MASHLE- [4] (2023/05/13 04:37 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33371

肌肉魔法使-MASHLE- [3] (2023/05/02 07:16 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33330

為美好的世界獻上爆焰! [12] (2023/07/04 12:59 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33826

為美好的世界獻上爆焰! [11] (2023/07/01 11:32 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33780

為美好的世界獻上爆焰! [10] (2023/06/17 04:38 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33715

為美好的世界獻上爆焰! [9] (2023/06/17 04:15 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33701

為美好的世界獻上爆焰! [8] (2023/06/17 03:52 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33660

為美好的世界獻上爆焰! [7] (2023/06/17 03:27 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33552

為美好的世界獻上爆焰! [6] (2023/06/17 03:03 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33523

為美好的世界獻上爆焰! [5] (2023/06/17 02:33 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33522

為美好的世界獻上爆焰! [4] (2023/06/09 03:32 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33363

為美好的世界獻上爆焰! [3] (2023/06/09 03:22 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33316

Opus.COLORs 色彩高校星 [12] (2023/07/04 12:31 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33832

Opus.COLORs 色彩高校星 [11] (2023/07/04 12:30 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33787

Opus.COLORs 色彩高校星 [10] (2023/06/12 10:41 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33733

Opus.COLORs 色彩高校星 [9] (2023/06/12 10:40 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33732

Opus.COLORs 色彩高校星 [8] (2023/06/05 09:27 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33665

Opus.COLORs 色彩高校星 [7] (2023/06/05 01:09 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33557

Opus.COLORs 色彩高校星 [6] (2023/05/15 04:48 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33528

Opus.COLORs 色彩高校星 [5] (2023/05/15 04:26 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33454

Opus.COLORs 色彩高校星 [4] (2023/05/15 04:26 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33368

Opus.COLORs 色彩高校星 [3] (2023/05/06 02:54 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33325

勇者死了! [12] (2023/07/04 12:21 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33831

勇者死了! [11] (2023/07/03 12:05 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33788

勇者死了! [10] (2023/06/16 11:34 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33735

勇者死了! [9] (2023/06/16 12:13 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33734

勇者死了! [8] (2023/06/03 11:48 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33666

勇者死了! [7] (2023/06/03 01:21 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33559

勇者死了! [6] (2023/05/27 05:36 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33558

勇者死了! [5] (2023/05/15 04:18 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33456

勇者死了! [4] (2023/05/13 06:13 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33370

勇者死了! [3] (2023/05/01 04:36 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33328

勇者死了! [2] (2023/04/29 11:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33327

勇者死了! [1] (2023/04/29 01:43 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33259

刀劍神域劇場版-Progressive-陰沉薄暮的詼諧曲 [電影] (2023/06/29 10:06 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33944

我讓最想被擁抱的男人給威脅了 劇場版~西班牙篇~ [電影] (2023/06/23 04:26 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=29076

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [12] (2023/06/23 04:02 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33794

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [11] (2023/06/12 11:35 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33759

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [10] (2023/06/05 12:47 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33758

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [9] (2023/06/05 12:46 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33678

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [8] (2023/06/02 12:14 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33571

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [7] (2023/05/30 03:54 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33540

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [6] (2023/05/17 01:19 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33466

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [5] (2023/05/09 11:20 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33380

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [4] (2023/05/06 03:20 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33346

轉生貴族的異世界冒險錄~不知自重的眾神使徒~ [3] (2023/04/26 02:41 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33345

吸血鬼馬上死 第二季 [5] (2023/06/22 02:30 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=32567

吸血鬼馬上死 第二季 [4] (2023/06/22 02:06 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=32473

吸血鬼馬上死 第二季 [3] (2023/06/22 01:42 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=32472

吸血鬼馬上死 第二季 [2] (2023/06/22 01:19 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=32431

吸血鬼馬上死 第二季 [1] (2023/06/22 12:55 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=32361

吸血鬼馬上死 第二季 [12] (2023/06/18 03:14 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33147

吸血鬼馬上死 第二季 [11] (2023/06/18 02:39 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33074

吸血鬼馬上死 第二季 [10] (2023/06/18 01:53 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33004

吸血鬼馬上死 第二季 [9] (2023/06/18 01:23 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33003

吸血鬼馬上死 第二季 [8] (2023/06/18 01:09 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32814

我家的英雄 [12] (2023/06/22 12:30 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33793

我家的英雄 [11] (2023/06/22 12:07 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33761

我家的英雄 [10] (2023/06/22 12:06 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33760

我家的英雄 [9] (2023/06/05 11:22 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33679

我家的英雄 [8] (2023/05/30 03:26 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33572

我家的英雄 [7] (2023/05/27 04:41 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33541

我家的英雄 [6] (2023/05/17 01:47 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33467

我家的英雄 [5] (2023/05/13 05:46 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33381

我家的英雄 [4] (2023/05/02 12:11 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33348

我家的英雄 [3] (2023/04/27 01:51 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33347

無論何時我們的戀情都是10厘米。 [5] (2023/06/18 05:26 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32616

無論何時我們的戀情都是10厘米。 [4] (2023/06/18 05:02 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32615

無論何時我們的戀情都是10厘米。 [3] (2023/06/18 04:37 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32614

無論何時我們的戀情都是10厘米。 [2] (2023/06/18 04:13 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32613

無論何時我們的戀情都是10厘米。 [1] (2023/06/18 04:00 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32612

呆萌酷男孩 [24] (2023/06/18 03:57 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33150

劇場版 擅長捉弄人的高木同學 [電影] (2023/06/18 03:57 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=32324

第二次被異世界召喚 [7] (2023/06/13 12:01 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33569

第二次被異世界召喚 [6] (2023/05/27 04:16 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33537

第二次被異世界召喚 [5] (2023/05/17 03:23 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33463

第二次被異世界召喚 [4] (2023/05/14 10:10 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33377

第二次被異世界召喚 [3] (2023/05/14 10:10 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33364

第二次被異世界召喚 [2] (2023/05/03 02:11 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33356

第二次被異世界召喚 [1] (2023/04/30 10:57 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33355

劇場版 歌之☆王子殿下♪ 真愛 ST☆RISH TOURS [電影] (2023/06/09 01:47 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33393

TRIGUN STAMPEDE [1] (2023/06/06 10:52 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=32341

交錯的想念 [電影] (2023/05/17 03:22 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=28808

Buddy Daddies 殺手奶爸 [12] (2023/04/28 01:04 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33276

Buddy Daddies 殺手奶爸 [11] (2023/04/28 12:36 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33158

Buddy Daddies 殺手奶爸 [10] (2023/04/28 12:07 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=33068

Buddy Daddies 殺手奶爸 [9] (2023/04/27 07:17 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33029

Buddy Daddies 殺手奶爸 [8.5] (2023/04/26 05:57 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32836

Buddy Daddies 殺手奶爸 [8] (2023/04/26 05:34 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32703

Buddy Daddies 殺手奶爸 [7] (2023/04/26 05:06 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32702

Buddy Daddies 殺手奶爸 [6] (2023/04/26 04:34 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32590

Buddy Daddies 殺手奶爸 [5] (2023/04/26 04:10 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32520

Buddy Daddies 殺手奶爸 [4] (2023/04/26 03:41 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32519

Buddy Daddies 殺手奶爸 [3] (2023/04/26 03:12 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32453

冰劍的魔術師將要統一世界 [12] (2023/04/26 02:15 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33115

冰劍的魔術師將要統一世界 [11] (2023/04/26 02:08 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33063

冰劍的魔術師將要統一世界 [8] (2023/04/26 12:27 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=32691

冰劍的魔術師將要統一世界 [10] (2023/04/26 12:09 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33023

2023/07/24 05:08 PM [週一]
總輸出:157 筆觀看記錄

目前功能

  • 單純的純文字複製到剪貼簿

  • JavaScript code 自動複製看過的動畫純文字:
    單純輸出看了哪部動畫,跟動畫網址。
    文字上沒有詳細匯出看到第幾話。
    但網址都是觀看進度的話數 URL。

    • 也就是說看到第12話的話,網址會是第12話的。

  • JavaScript code 改良版,輸出更多細節自動複製看過各話動畫純文字:
    可以輸出每話的 URL 及上次巴哈姆特動畫瘋主機上記錄的觀看時間

    • 觀看時間:

      • 經觀察,是指上次播放的現實時間,而非影片時間軸停在幾分幾秒。

      • 24小時制標示,時區應該是 UTC+08:00 。


以後再看狀況改寫

  • 可能可以發展:

    • 不只抓大標題,細項哪些話看過跟觀看時間都抓。(已完成)

    • 自動存成純文字檔案,執行 code 後自動下載儲存檔案。(O)

    • CSV 試算表欄位都整理好,執行 code 後自動下載儲存檔案。(O)

      • 匯出到 Google Sheet,線上保管記錄。

        • 會扯到 Google 權限,可能用 Google Apps Script 比較快。

    • 持續自動比對觀看更新:
      有新的記錄就通知其他平台(LINE Notify、Slack 之類的)

      • 但這就要一直開巴哈姆特動畫瘋的觀看記錄掛著,
        去偵測是否有新的觀看資料,不能關瀏覽器。


改版時,遇到標題與 URL 對不上的狀況

  • 原因:
    改抓細節每話觀看 URL 跟項目時,
    URL 的部分改抓 a tag 自訂屬性 data-gtm = '觀看紀錄卡片' 的時候,
    if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片'),
    會多抓 項目 CSS ClassName 符合 'history-anime-title' 的大標題的 URL。
    另一方面,抓細標題改用 'history-list-anime-title' 來抓,所以數量不合。

JavaScript:
let ttt = 0; /*得到標題的總數量*/
let uuu = 0; /*得到URL的總數量*/

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一鍵複製\n' + document.location.href + '\n\n';
    
    for (key in document.getElementsByClassName('history-list-anime-title')) {
      if(key=='length'){
         break;
      }
      if(document.getElementsByClassName('history-list-anime-title')[key].innerText != undefined){
        ttt++;
        out += document.getElementsByClassName('history-list-anime-title')[key].innerText + ' (' + document.getElementsByClassName('date')[key].innerText.replace(/\.\s/g,'.').replace(/\s\s/g,' ') + ')' + '\n'// + document.getElementsByClassName('click-area')[key].href + '\n\n';  
      } 
    }
    
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}


for (key in document.getElementsByTagName('a')) {
    if(key=='length'){
        break;
    }
    
    if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片'){
            uuu++;
            console.log(key);
            console.log(document.getElementsByTagName('a')[key].href);
        }
    }
}


console.log('ttt = ' + ttt);
console.log('uuu = ' + uuu);

改,只用 a tag data-gtm = '觀看紀錄卡片' 並排除大標題

  • 因為細標題的文字會跟在 a tag 的 .innerText,所以也不用兩個迴圈。 

  • 排除大標題的方式:

    • 不輸出 .innerText 無文字的。

    • 也不輸出 .innerText 包含 '下一集' 的 URL。

  • 兩種寫法對比數量終於一致,完成。

JavaScript:
let ttt = 0; /*得到標題的總數量*/
let uuu = 0; /*得到URL的總數量*/

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一鍵複製\n' + document.location.href + '\n\n';
    
    for (key in document.getElementsByClassName('history-list-anime-title')) {
      if(key=='length'){
         break;
      }
      if(document.getElementsByClassName('history-list-anime-title')[key].innerText != undefined){
        ttt++;
        //out += document.getElementsByClassName('history-list-anime-title')[key].innerText + ' (' + document.getElementsByClassName('date')[key].innerText.replace(/\.\s/g,'.').replace(/\s\s/g,' ') + ')' + '\n'// + document.getElementsByClassName('click-area')[key].href + '\n\n';  
      } 
    }

    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                uuu++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ') + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
    
            }
        }
    }
    
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

console.log('ttt = ' + ttt);
console.log('uuu = ' + uuu);

移除舊版後,
新版:純輸出自動複製觀看時間及各標題各話 URL 純文字

//JavaScript
if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一鍵複製\n' + document.location.href + '\n\n';
    
    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                uuu++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ') + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
    
            }
        }
    }
    
    console.log(out);
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

執行 code 後自動下載儲存檔案。

JavaScript:

function copy(text) {
    if(text!=''){
        const textarea = document.createElement('textarea');
        textarea.value = text;
        document.body.appendChild(textarea);
    
        textarea.select();
        textarea.setSelectionRange(0, 99999); 
    
        document.execCommand('copy');
    
        document.body.removeChild(textarea);
        console.log('已複製 = \n\n' + text);    
    }
}

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一秒複製\n' + document.location.href + '\n\n';
    let out_csv = '動畫名,觀看時間,URL\n';
    let num = 0;    
    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            out = out.replace(/(.*)\n\n$/gi,'$1');
            out += '\n\n' + get_time_text(new Date()) + '\n總輸出:' + num + ' 筆觀看記錄';
            downloadFile('巴哈姆特動畫瘋 觀看記錄一秒複製( ' + num + ' 筆)' + get_time_text(new Date()) + '.txt', out);
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                num++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + get_time_text(document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ')) + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
            }
        }
    }
    
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

/*用於印出時間的顯示設定*/
function get_time_text(timecode){
  let time_obj = new Date(timecode);
  if(time_obj=='Invalid Date'){
      return timecode;
  }
  const week_name = ['日','一','二','三','四','五','六'];

    return (
      time_obj.getFullYear() + '\/' + 
      (  ((+(time_obj.getMonth())+1)<10)? '0'+(+(time_obj.getMonth())+1) : (+(time_obj.getMonth())+1)  ) + '\/' +
      ((time_obj.getDate()<10)?('0'+time_obj.getDate()):time_obj.getDate()) + ' ' +
      time_obj.toLocaleTimeString('en-US',{
                                              hour: '2-digit',  
                                              minute: '2-digit',
                                              /*second: '2-digit',*/
                                            }) + 
      ' [週' + week_name[time_obj.getDay()] +  ']'   
      );
}

function downloadFile(fileName = 'fileName.csv', inputCSVstring) {
    const data = inputCSVstring;
    let blob = new Blob([data], {
        type: 'application/octet-stream',
    });
    var href = URL.createObjectURL(blob);
    var link = document.createElement('a');
    document.body.appendChild(link);
    link.href = href;
    link.download = fileName;
    link.click();
}



重組輸出文字,直接輸出 csv 檔
CSV 試算表欄位都整理好,執行 code 後自動下載儲存檔案。

效果
JavaScript:

function copy(text) {
    if(text!=''){
        const textarea = document.createElement('textarea');
        textarea.value = text;
        document.body.appendChild(textarea);
    
        textarea.select();
        textarea.setSelectionRange(0, 99999); 
    
        document.execCommand('copy');
    
        document.body.removeChild(textarea);
        console.log('已複製 = \n\n' + text);    
    }
}

if(/https:\/\/ani\.gamer\.com\.tw\/viewList\.php.*/gi.test(document.location.href)){
    let out = '巴哈姆特動畫瘋 觀看記錄一秒複製\n' + document.location.href + '\n\n';
    let out_csv = '動畫名,觀看時間,URL\n';
    let num = 0;    
    for (key in document.getElementsByTagName('a')) {
        if(key=='length'){
            out = out.replace(/(.*)\n\n$/gi,'$1');
            out += '\n\n' + get_time_text(new Date()) + '\n總輸出:' + num + ' 筆觀看記錄';
            downloadFile('巴哈姆特動畫瘋 觀看記錄一秒複製( ' + num + ' 筆)' + get_time_text(new Date()) + '.csv', out_csv);
            break;
        }
        
        if(document.getElementsByTagName('a')[key].getAttribute('data-gtm')!=undefined){
            if((document.getElementsByTagName('a')[key].getAttribute('data-gtm')=='觀看紀錄卡片')&&(document.getElementsByTagName('a')[key].innerText!='')&&(!(/.*下一集.*/gi.test(document.getElementsByTagName('a')[key].innerText)))){
                num++;
                out += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ' (' + get_time_text(document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' ')) + ')' + '\n' + document.getElementsByTagName('a')[key].href + '\n\n';  
                out_csv += document.getElementsByTagName('a')[key].querySelector('div.history-list-anime-title').innerText + ',' + get_time_text(document.getElementsByTagName('a')[key].querySelector('div.date').innerText.replace(/\.\s/g,'/').replace(/\s\s/g,' '))  + ',' + document.getElementsByTagName('a')[key].href + '\n';
            }
        }
    }
   
    console.log(out_csv);
    
    copy(out);
}else{
    document.location.href = 'https://ani.gamer.com.tw/viewList.php';
}

/*用於印出時間的顯示設定*/
function get_time_text(timecode){
  let time_obj = new Date(timecode);
  if(time_obj=='Invalid Date'){
      return timecode;
  }
  const week_name = ['日','一','二','三','四','五','六'];

    return (
      time_obj.getFullYear() + '\/' + 
      (  ((+(time_obj.getMonth())+1)<10)? '0'+(+(time_obj.getMonth())+1) : (+(time_obj.getMonth())+1)  ) + '\/' +
      ((time_obj.getDate()<10)?('0'+time_obj.getDate()):time_obj.getDate()) + ' ' +
      time_obj.toLocaleTimeString('en-US',{
                                              hour: '2-digit',  
                                              minute: '2-digit',
                                              /*second: '2-digit',*/
                                            }) + 
      ' [週' + week_name[time_obj.getDay()] +  ']'   
      );
}

function downloadFile(fileName = 'fileName.csv', inputCSVstring) {
    const data = inputCSVstring;
    let blob = new Blob([data], {
        type: 'application/octet-stream',
    });
    var href = URL.createObjectURL(blob);
    var link = document.createElement('a');
    document.body.appendChild(link);
    link.href = href;
    link.download = fileName;
    link.click();
}

その他

以前做過類似的事情

宣傳(?)

參考

  • .querySelector('div.date').innerText 的寫法參考下面這網站

時間格式化 function get_time_text(timecode)

  • 12 小時 AM、PM 參考

  • 處理顯示星期幾參考


存一下近期的記錄

巴哈姆特動畫瘋 觀看記錄一秒複製
https://ani.gamer.com.tw/viewList.php

撿走被人悔婚的千金,教會她壞壞的幸福生活 [3] (6 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=35404

撿走被人悔婚的千金,教會她壞壞的幸福生活 [12] (6 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=36504

撿走被人悔婚的千金,教會她壞壞的幸福生活 [11] (7 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=36334

撿走被人悔婚的千金,教會她壞壞的幸福生活 [10] (7 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=36219

撿走被人悔婚的千金,教會她壞壞的幸福生活 [9] (8 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=36163

撿走被人悔婚的千金,教會她壞壞的幸福生活 [8] (8 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=36092

撿走被人悔婚的千金,教會她壞壞的幸福生活 [7] (9 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=35943

撿走被人悔婚的千金,教會她壞壞的幸福生活 [6] (9 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=35809

如果 30 歲還是處男,似乎就能成為魔法師 [8] (9 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=37430

如果 30 歲還是處男,似乎就能成為魔法師 [7] (2024/03/02 05:15 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37326

如果 30 歲還是處男,似乎就能成為魔法師 [6] (2024/03/02 04:50 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37113

如果 30 歲還是處男,似乎就能成為魔法師 [5] (2024/03/02 03:40 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37068

如果 30 歲還是處男,似乎就能成為魔法師 [4] (2024/02/16 10:39 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36998

如果 30 歲還是處男,似乎就能成為魔法師 [3] (2024/02/16 10:38 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36935

如果 30 歲還是處男,似乎就能成為魔法師 [2] (2024/01/19 06:19 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36934

如果 30 歲還是處男,似乎就能成為魔法師 [1] (2024/01/16 10:27 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36933

我獨自升級 [6] (昨天 13:21)
https://ani.gamer.com.tw/animeVideo.php?sn=37088

我獨自升級 [5] (昨天 12:58)
https://ani.gamer.com.tw/animeVideo.php?sn=37022

我獨自升級 [4] (昨天 12:47)
https://ani.gamer.com.tw/animeVideo.php?sn=36983

我獨自升級 [3] (2024/02/17 12:03 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36884

我獨自升級 [2] (2024/01/31 08:07 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36883

我獨自升級 [1] (2024/01/31 07:22 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36882

狩龍人拉格納 [20] (昨天 12:18)
https://ani.gamer.com.tw/animeVideo.php?sn=37459

狩龍人拉格納 [19] (昨天 08:48)
https://ani.gamer.com.tw/animeVideo.php?sn=37352

狩龍人拉格納 [18] (昨天 08:27)
https://ani.gamer.com.tw/animeVideo.php?sn=37226

狩龍人拉格納 [17] (前天 12:20)
https://ani.gamer.com.tw/animeVideo.php?sn=37089

狩龍人拉格納 [16] (前天 11:53)
https://ani.gamer.com.tw/animeVideo.php?sn=37023

狩龍人拉格納 [15] (前天 09:50)
https://ani.gamer.com.tw/animeVideo.php?sn=36964

狩龍人拉格納 [14] (2024/03/05 09:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36963

狩龍人拉格納 [13] (2024/03/04 07:48 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36539

狩龍人拉格納 [12] (2024/03/03 09:56 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36360

狩龍人拉格納 [11] (2024/03/03 09:49 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36250

狩龍人拉格納 [10] (2024/03/03 09:10 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36187

狩龍人拉格納 [9] (2024/03/03 08:03 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36118

狩龍人拉格納 [8] (2024/03/03 07:39 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36036

狩龍人拉格納 [7] (2024/03/03 06:57 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35835

狩龍人拉格納 [6] (2024/03/03 05:28 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35771

狩龍人拉格納 [5] (2024/03/03 04:42 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35650

狩龍人拉格納 [4] (2024/03/03 01:48 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35480

狩龍人拉格納 [3] (2024/03/03 11:47 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35479

狩龍人拉格納 [2] (2024/03/03 11:46 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35478

狩龍人拉格納 [1] (2024/03/03 07:50 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35246

女王的手術刀 [9] (昨天 08:10)
https://ani.gamer.com.tw/animeVideo.php?sn=37439

女王的手術刀 [8] (昨天 07:03)
https://ani.gamer.com.tw/animeVideo.php?sn=37438

女王的手術刀 [7] (2024/03/01 11:16 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37330

女王的手術刀 [6] (2024/03/01 11:16 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37117

女王的手術刀 [5] (2024/02/15 07:21 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37072

女王的手術刀 [4] (2024/02/09 01:07 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37002

女王的手術刀 [3] (2024/02/09 12:44 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36932

女王的手術刀 [2] (2024/01/25 10:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36931

女王的手術刀 [1] (2024/01/21 09:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36930

休假的壞人先生 [9] (昨天 06:54)
https://ani.gamer.com.tw/animeVideo.php?sn=37449

休假的壞人先生 [8] (2024/03/02 12:16 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37342

休假的壞人先生 [7] (2024/02/26 05:18 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37216

休假的壞人先生 [6] (2024/02/26 03:34 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37079

休假的壞人先生 [5] (2024/02/14 12:43 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37014

休假的壞人先生 [4] (2024/02/11 01:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36975

休假的壞人先生 [1] (2024/02/03 06:26 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36904

休假的壞人先生 [3] (2024/01/30 09:52 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36906

休假的壞人先生 [2] (2024/01/25 12:02 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36905

反派千金等級 99~我是隱藏頭目但不是魔王~ [9] (昨天 06:26)
https://ani.gamer.com.tw/animeVideo.php?sn=37442

反派千金等級 99~我是隱藏頭目但不是魔王~ [8] (2024/03/02 12:15 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37372

反派千金等級 99~我是隱藏頭目但不是魔王~ [6] (2024/03/01 06:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37111

反派千金等級 99~我是隱藏頭目但不是魔王~ [1] (2024/03/01 06:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36924

反派千金等級 99~我是隱藏頭目但不是魔王~ [7] (2024/02/23 06:32 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37270

反派千金等級 99~我是隱藏頭目但不是魔王~ [5] (2024/02/15 05:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37066

反派千金等級 99~我是隱藏頭目但不是魔王~ [4] (2024/02/08 03:14 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36969

反派千金等級 99~我是隱藏頭目但不是魔王~ [3] (2024/02/08 03:14 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36926

反派千金等級 99~我是隱藏頭目但不是魔王~ [2] (2024/01/17 03:01 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36925

月光下的異世界之旅 第二季 [9] (前天 21:25)
https://ani.gamer.com.tw/animeVideo.php?sn=37445

月光下的異世界之旅 第二季 [8] (2024/03/02 09:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37369

月光下的異世界之旅 第二季 [7] (2024/02/27 05:38 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37273

月光下的異世界之旅 第二季 [6] (2024/02/16 09:58 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37077

月光下的異世界之旅 第二季 [5] (2024/02/16 09:12 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37063

月光下的異世界之旅 第二季 [4] (2024/02/16 08:50 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36972

月光下的異世界之旅 第二季 [3] (2024/02/16 08:25 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36917

月光下的異世界之旅 第二季 [2] (2024/02/16 08:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36916

月光下的異世界之旅 第二季 [1] (2024/02/16 07:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36915

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [20] (前天 01:42)
https://ani.gamer.com.tw/animeVideo.php?sn=37353

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [19] (2024/02/27 03:31 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37227

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [18] (2024/02/26 10:11 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37090

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [17] (2024/02/13 12:17 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37024

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [16] (2024/02/04 02:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36984

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [15] (2024/02/04 01:04 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36881

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [14] (2024/01/21 07:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36880

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [13] (2024/01/17 06:55 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36879

勇氣爆發 BANG BRAVERN [8] (2024/03/03 04:51 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37424

勇氣爆發 BANG BRAVERN [7] (2024/03/02 06:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37340

勇氣爆發 BANG BRAVERN [6] (2024/02/25 06:57 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37169

勇氣爆發 BANG BRAVERN [5] (2024/02/15 12:43 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37109

勇氣爆發 BANG BRAVERN [4] (2024/02/09 02:56 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37012

勇氣爆發 BANG BRAVERN [3] (2024/02/04 02:44 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36944

勇氣爆發 BANG BRAVERN [2] (2024/01/26 12:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36943

勇氣爆發 BANG BRAVERN [1] (2024/01/16 08:11 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36942

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [9] (2024/03/03 04:20 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37418

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [8] (2024/02/23 09:11 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37337

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [7] (2024/02/23 08:24 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37166

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [6] (2024/02/23 08:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37106

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [5] (2024/02/23 07:36 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37009

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [4] (2024/02/23 06:37 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36995

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [3] (2024/02/19 01:44 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36851

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [2] (2024/01/22 11:25 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36850

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [1] (2024/01/05 08:18 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36849

非自願的不死冒險者 [9] (2024/03/03 03:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37411

非自願的不死冒險者 [8] (2024/02/25 05:53 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37365

非自願的不死冒險者 [7] (2024/02/17 03:52 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37239

非自願的不死冒險者 [6] (2024/02/17 03:28 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37102

非自願的不死冒險者 [5] (2024/02/17 03:00 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37036

非自願的不死冒險者 [4] (2024/02/17 02:39 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36993

非自願的不死冒險者 [3] (2024/02/17 02:17 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36857

非自願的不死冒險者 [2] (2024/02/17 01:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36856

非自願的不死冒險者 [1] (2024/02/17 01:27 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36855

魔都精兵的奴隸 [9] (2024/03/02 09:08 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37426

魔都精兵的奴隸 [8] (2024/02/25 11:30 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37341

魔都精兵的奴隸 [7] (2024/02/25 08:44 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37170

魔都精兵的奴隸 [6] (2024/02/16 06:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37110

魔都精兵的奴隸 [5] (2024/02/16 03:02 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37013

魔都精兵的奴隸 [4] (2024/02/16 01:37 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36996

魔都精兵的奴隸 [3] (2024/02/16 12:35 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36848

魔都精兵的奴隸 [2] (2024/02/16 10:59 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36847

魔都精兵的奴隸 [1] (2024/02/09 09:33 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36846

我的推是壞人大小姐。 [12] (2024/03/02 08:57 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36402

我的推是壞人大小姐。 [11] (2024/02/29 05:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36272

我的推是壞人大小姐。 [10] (2024/02/29 04:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36206

我的推是壞人大小姐。 [9] (2024/02/29 04:27 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36139

我的推是壞人大小姐。 [8] (2024/02/29 03:39 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36015

我的推是壞人大小姐。 [7] (2024/02/29 02:54 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35854

我的推是壞人大小姐。 [6] (2024/02/29 02:26 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35795

我的推是壞人大小姐。 [5] (2024/02/29 01:55 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35624

我的推是壞人大小姐。 [4] (2024/02/29 01:44 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35623

我的推是壞人大小姐。 [3] (2024/02/29 01:42 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35381

我的推是壞人大小姐。 [2] (2024/02/28 07:22 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35380

我的推是壞人大小姐。 [1] (2024/02/28 06:50 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35361

治癒魔法的錯誤使用法 [9] (2024/03/02 08:18 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37405

治癒魔法的錯誤使用法 [8] (2024/03/02 07:22 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37363

治癒魔法的錯誤使用法 [7] (2024/02/24 03:42 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37236

治癒魔法的錯誤使用法 [6] (2024/02/24 02:19 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37099

治癒魔法的錯誤使用法 [5] (2024/02/17 05:30 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37033

治癒魔法的錯誤使用法 [4] (2024/02/15 07:08 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36992

治癒魔法的錯誤使用法 [3] (2024/01/21 05:42 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36860

治癒魔法的錯誤使用法 [2] (2024/01/20 10:40 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36859

治癒魔法的錯誤使用法 [1] (2024/01/07 01:15 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36858

葬送的芙莉蓮 [25] (2024/03/02 06:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37407

葬送的芙莉蓮 [24] (2024/02/25 06:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37362

葬送的芙莉蓮 [23] (2024/02/17 04:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37237

葬送的芙莉蓮 [22] (2024/02/16 07:46 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37100

葬送的芙莉蓮 [21] (2024/02/11 12:12 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37034

葬送的芙莉蓮 [20] (2024/02/10 09:36 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36991

葬送的芙莉蓮 [19] (2024/02/10 07:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36862

葬送的芙莉蓮 [18] (2024/02/10 07:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36861

葬送的芙莉蓮 [17] (2024/02/10 06:42 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36554

葬送的芙莉蓮 [16] (2024/02/10 03:47 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36553

葬送的芙莉蓮 [15] (2024/02/06 05:20 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36371

葬送的芙莉蓮 [14] (2024/02/06 04:50 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36260

葬送的芙莉蓮 [13] (2024/02/06 04:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36196

葬送的芙莉蓮 [12] (2024/02/06 03:34 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36128

葬送的芙莉蓮 [11] (2024/02/06 03:15 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36046

葬送的芙莉蓮 [10] (2024/02/06 03:14 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35845

葬送的芙莉蓮 [9] (2024/02/06 12:53 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35781

葬送的芙莉蓮 [8] (2024/02/05 07:28 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35660

葬送的芙莉蓮 [7] (2024/02/05 09:58 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35447

葬送的芙莉蓮 [6] (2024/02/05 09:34 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35446

葬送的芙莉蓮 [5] (2024/02/05 09:10 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35445

葬送的芙莉蓮 [4] (2024/02/05 08:02 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35244

葬送的芙莉蓮 [3] (2024/02/05 04:14 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35243

葬送的芙莉蓮 [2] (2024/02/05 03:53 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35242

葬送的芙莉蓮 [1] (2024/01/21 01:01 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35241

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [8] (2024/03/02 04:27 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37343

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [7] (2024/03/02 03:50 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37217

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [6] (2024/03/02 03:49 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37080

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [5] (2024/02/09 02:55 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37015

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [4] (2024/02/08 05:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36976

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [3] (2024/01/29 09:50 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36903

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [2] (2024/01/21 10:40 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36902

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [1] (2024/01/21 10:18 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36901

位於戀愛光譜極端的我們 [1] (2024/02/27 06:01 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35442

世界盡頭的聖騎士 鐵鏽之山的君王 [1] (2024/02/27 05:41 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35466

不死不運 [20] (2024/02/26 10:10 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37359

不死不運 [19] (2024/02/25 05:00 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37233

不死不運 [18] (2024/02/24 09:48 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37096

不死不運 [17] (2024/02/24 09:33 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37030

不死不運 [16] (2024/02/24 09:28 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36989

不死不運 [15] (2024/02/24 09:27 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36867

不死不運 [14] (2024/02/24 09:27 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36866

不死不運 [13] (2024/02/24 09:26 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36626

不死不運 [12] (2024/02/08 08:15 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36549

不死不運 [11] (2024/02/08 07:51 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36368

不死不運 [10] (2024/02/08 07:51 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36257

不死不運 [9] (2024/02/08 07:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36193

不死不運 [8] (2024/01/29 11:15 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36125

不死不運 [7] (2024/01/29 12:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36043

不死不運 [6] (2024/01/29 12:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35842

不死不運 [5] (2024/01/29 12:21 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35778

不死不運 [4] (2024/01/28 10:40 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35657

不死不運 [3] (2024/01/28 05:24 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35453

不死不運 [2] (2024/01/25 10:07 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35452

不死不運 [1] (2024/01/25 09:42 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35451

隊長小翼 [7] (2024/02/26 07:21 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=9829

聖靈家族 [13] (2024/02/26 03:33 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=1895

聖靈家族 [12] (2024/02/25 11:22 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1894

聖靈家族 [11] (2024/02/25 11:13 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1893

聖靈家族 [10] (2024/02/25 11:11 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1892

聖靈家族 [9] (2024/02/25 02:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1891

聖靈家族 [8] (2024/02/25 01:53 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1890

聖靈家族 [7] (2024/02/25 01:49 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1889

聖靈家族 [6] (2024/02/25 04:20 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1888

聖靈家族 [5] (2024/02/21 11:33 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=1887

聖靈家族 [4] (2024/02/21 11:23 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=1886

聖靈家族 [3] (2024/02/20 11:21 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1885

聖靈家族 [2] (2024/02/20 10:57 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1884

聖靈家族 [1] (2024/02/20 10:42 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1883

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [7] (2024/02/25 08:43 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37223

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [6] (2024/02/25 07:52 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37086

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [5] (2024/02/17 12:43 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37020

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [4] (2024/02/16 11:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36981

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [3] (2024/02/15 06:30 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36890

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [2] (2024/01/21 06:49 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36889

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [1] (2024/01/19 06:48 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36888

烈焰先鋒 救國的橘衣消防員 [11] (2024/02/24 09:26 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36254

烈焰先鋒 救國的橘衣消防員 [12] (2024/02/24 09:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36365

烈焰先鋒 救國的橘衣消防員 [10] (2024/01/06 06:10 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36190

青之驅魔師 [1] (2024/02/16 11:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=3524

BACCANO!大騷動! [16] (2024/02/15 05:11 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18968

BACCANO!大騷動! [15] (2024/02/15 04:34 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18967

BACCANO!大騷動! [14] (2024/02/15 04:00 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18966

BACCANO!大騷動! [13] (2024/02/15 03:34 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18965

BACCANO!大騷動! [12] (2024/02/15 02:59 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18964

BACCANO!大騷動! [11] (2024/02/15 02:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18963

BACCANO!大騷動! [10] (2024/02/15 02:08 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18962

BACCANO!大騷動! [9] (2024/02/15 11:17 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18961

BACCANO!大騷動! [8] (2024/02/14 07:23 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18960

BACCANO!大騷動! [7] (2024/02/14 06:58 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18959

BACCANO!大騷動! [6] (2024/02/14 06:51 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18958

BACCANO!大騷動! [5] (2024/02/14 01:31 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18957

BACCANO!大騷動! [4] (2024/02/13 10:27 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=18956

BACCANO!大騷動! [3] (2024/02/13 06:59 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=18955

BACCANO!大騷動! [2] (2024/02/12 07:54 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=18954

BACCANO!大騷動! [1] (2024/02/11 08:39 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=18953

青之驅魔師 島根啟明結社篇 [6] (2024/02/14 05:15 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37087

青之驅魔師 島根啟明結社篇 [5] (2024/02/14 04:53 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37021

青之驅魔師 島根啟明結社篇 [4] (2024/02/08 06:12 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36982

青之驅魔師 島根啟明結社篇 [3] (2024/02/03 06:50 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36887

青之驅魔師 島根啟明結社篇 [2] (2024/01/31 06:55 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36886

青之驅魔師 島根啟明結社篇 [1] (2024/01/18 05:25 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36885

我讓最想被擁抱的男人給威脅了 [13] (2024/02/10 06:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11395

我讓最想被擁抱的男人給威脅了 [12] (2024/02/10 04:59 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11387

我讓最想被擁抱的男人給威脅了 [11] (2024/02/10 03:58 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11386

我讓最想被擁抱的男人給威脅了 [10] (2024/02/10 03:34 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11385

我讓最想被擁抱的男人給威脅了 [9] (2024/02/10 03:32 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11384

我讓最想被擁抱的男人給威脅了 [8] (2024/02/10 02:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11383

我讓最想被擁抱的男人給威脅了 [7] (2024/02/10 02:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11382

我讓最想被擁抱的男人給威脅了 [6] (2024/02/08 02:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11381

我讓最想被擁抱的男人給威脅了 [5] (2024/02/08 01:46 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11380

我讓最想被擁抱的男人給威脅了 [4] (2024/02/08 01:22 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11379

我讓最想被擁抱的男人給威脅了 [3] (2024/02/08 12:57 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11378

我讓最想被擁抱的男人給威脅了 [2] (2024/02/08 12:33 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11377

我讓最想被擁抱的男人給威脅了 [1] (2024/02/08 11:53 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11376

僕愛君愛:致我深愛的每個妳 [電影] (2024/02/10 03:12 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36234

僕愛君愛:致深愛妳的那個我 [電影] (2024/02/09 07:51 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36235

卡片戰鬥!! 先導者 Divinez [4] (2024/02/08 11:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37028

名偵探柯南 [1021] (2024/02/07 07:26 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=26481

名偵探柯南 [1020] (2024/01/30 08:40 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26480

名偵探柯南 [1019] (2024/01/29 11:59 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=26479

名偵探柯南 [1018] (2024/01/26 03:56 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=26478

名偵探柯南 [1017] (2024/01/26 12:36 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=26477

名偵探柯南 [1016] (2024/01/23 04:57 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26476

名偵探柯南 [1015] (2024/01/23 01:04 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26475

名偵探柯南 [1014] (2024/01/22 11:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=26474

名偵探柯南 [1013] (2024/01/17 08:47 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=26473

名偵探柯南 [1012] (2024/01/17 08:32 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=26472

名偵探柯南 [1011] (2024/01/17 08:31 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=26471

K [1] (2024/01/31 06:54 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=10649

愚蠢天使與惡魔共舞 [3] (2024/01/27 08:43 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36920

愚蠢天使與惡魔共舞 [2] (2024/01/27 08:20 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36919

愚蠢天使與惡魔共舞 [1] (2024/01/27 07:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36918

最弱魔物使開始了撿垃圾之旅。 [1] (2024/01/27 06:19 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36954

歡迎來到實力至上主義的教室 第三季 [4] (2024/01/26 06:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36940

歡迎來到實力至上主義的教室 第三季 [3] (2024/01/26 05:37 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36842

歡迎來到實力至上主義的教室 第三季 [2] (2024/01/26 04:45 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36841

歡迎來到實力至上主義的教室 第三季 [1] (2024/01/26 04:20 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36840

BanG Dream! It's MyGO!!!!! [1] (2024/01/23 06:46 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=34030

MONSTERS 一百三情飛龍侍極 [1] (2024/01/22 01:07 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36968

百千家的妖怪王子 [3] (2024/01/20 07:46 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36865

百千家的妖怪王子 [2] (2024/01/20 04:57 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36864

百千家的妖怪王子 [1] (2024/01/15 12:43 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36863

名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ [1] (2024/01/20 01:35 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37004

肌肉魔法使-MASHLE- [12] (2024/01/17 06:41 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33837

肌肉魔法使-MASHLE- [11] (2024/01/17 05:30 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33836

她來自煩星 [2] (2024/01/17 05:26 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=31752

她來自煩星 [1] (2024/01/17 04:49 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=31751

公主殿下,「拷問」的時間到了 [1] (2024/01/17 03:24 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36921

公主殿下,「拷問」的時間到了 [2] (2024/01/17 03:24 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36922

HIGH CARD 至高之牌 [1] (2024/01/12 02:22 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=34961

月刊妄想科學 [1] (2024/01/12 03:46 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36945

金屬口紅 [1] (2024/01/11 01:15 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36936

憧憬成為魔法少女 [1] (2024/01/11 07:29 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36843

超超超超超喜歡你的 100 個女朋友 [12] (2024/01/10 09:22 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36532

超超超超超喜歡你的 100 個女朋友 [11] (2024/01/05 06:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36349

超超超超超喜歡你的 100 個女朋友 [10] (2024/01/05 05:44 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36239

超超超超超喜歡你的 100 個女朋友 [9] (2024/01/05 05:22 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36176

超超超超超喜歡你的 100 個女朋友 [8] (2024/01/05 05:21 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36107

超超超超超喜歡你的 100 個女朋友 [7] (2024/01/05 04:15 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36025

超超超超超喜歡你的 100 個女朋友 [6] (2024/01/05 04:06 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35824

超超超超超喜歡你的 100 個女朋友 [5] (2024/01/03 11:29 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35761

超超超超超喜歡你的 100 個女朋友 [2] (2024/01/02 01:40 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35509

超超超超超喜歡你的 100 個女朋友 [1] (2024/01/02 01:18 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35508

超超超超超喜歡你的 100 個女朋友 [4] (2023/12/28 12:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35640

超超超超超喜歡你的 100 個女朋友 [3] (2023/12/28 12:00 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35510

愛犬訊號 [1] (2024/01/09 12:35 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35788

SPY x FAMILY 間諜家家酒 Season 2 [34] (2024/01/09 06:34 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36188

SPY x FAMILY 間諜家家酒 Season 2 [33] (2024/01/09 06:13 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36119

SPY x FAMILY 間諜家家酒 Season 2 [32] (2024/01/09 05:22 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36037

SPY x FAMILY 間諜家家酒 Season 2 [31] (2024/01/09 05:00 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35836

SPY x FAMILY 間諜家家酒 Season 2 [30] (2024/01/08 10:41 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35772

SPY x FAMILY 間諜家家酒 Season 2 [29] (2024/01/08 10:17 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35651

SPY x FAMILY 間諜家家酒 Season 2 [28] (2024/01/08 09:53 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35471

SPY x FAMILY 間諜家家酒 Season 2 [27] (2024/01/08 09:29 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35470

SPY x FAMILY 間諜家家酒 Season 2 [26] (2024/01/08 08:58 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35469

我內心的糟糕念頭 [12] (2024/01/09 04:57 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33796

我內心的糟糕念頭 [11] (2024/01/09 04:13 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33755

我內心的糟糕念頭 [10] (2024/01/09 03:52 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33754

我內心的糟糕念頭 [9] (2024/01/09 03:30 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33676

我內心的糟糕念頭 [8] (2024/01/09 03:13 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33570

我內心的糟糕念頭 [7] (2024/01/09 01:52 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33538

我內心的糟糕念頭 [6] (2024/01/09 01:51 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33464

我內心的糟糕念頭 [5] (2024/01/09 12:32 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33378

我內心的糟糕念頭 [4] (2024/01/09 12:29 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33334

我內心的糟糕念頭 [3] (2024/01/09 12:28 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=33333

我內心的糟糕念頭 [2] (2024/01/08 03:24 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33287

我內心的糟糕念頭 [1] (2024/01/07 11:34 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33250

婚戒物語 [1] (2024/01/08 08:17 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36873

佐佐木與文鳥小嗶 [1] (2024/01/07 07:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36852

指尖相觸,戀戀不捨 [1] (2024/01/07 06:45 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36876

16bit 的感動 ANOTHER LAYER [13] (2024/01/07 06:44 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36571

16bit 的感動 ANOTHER LAYER [12] (2024/01/07 05:28 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36500

16bit 的感動 ANOTHER LAYER [11] (2024/01/07 05:02 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36330

16bit 的感動 ANOTHER LAYER [10] (2024/01/07 04:38 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36215

16bit 的感動 ANOTHER LAYER [9] (2024/01/07 04:33 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36159

16bit 的感動 ANOTHER LAYER [8] (2024/01/07 02:52 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36088

16bit 的感動 ANOTHER LAYER [7] (2024/01/07 02:26 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35939

16bit 的感動 ANOTHER LAYER [6] (2024/01/07 02:19 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35805

弱角友崎同學 2nd STAGE [1] (2024/01/07 01:16 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36837

重生者的魔法一定要特別 [12] (2024/01/07 10:46 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36537

重生者的魔法一定要特別 [11] (2024/01/07 07:26 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36357

重生者的魔法一定要特別 [10] (2024/01/03 01:17 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36247

重生者的魔法一定要特別 [9] (2024/01/03 01:16 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36184

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [12] (2024/01/07 07:02 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36540

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [11] (2024/01/07 05:34 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36359

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [10] (2024/01/07 05:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36249

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [9] (2024/01/07 04:42 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36186

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [8] (2024/01/07 04:11 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36117

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [7] (2024/01/07 03:35 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36035

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [6] (2024/01/07 03:07 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35834

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [5] (2024/01/07 03:05 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35770

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [4] (2024/01/06 10:23 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35649

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [3] (2024/01/06 04:45 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35477

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [2] (2024/01/06 04:08 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35476

堤亞穆帝國物語~從斷頭台開始,公主重生後的逆轉人生~ [1] (2024/01/06 03:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35475

我們的雨色協議 [4] (2024/01/06 12:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35645

我們的雨色協議 [3] (2024/01/06 09:54 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35489

我們的雨色協議 [2] (2024/01/06 09:30 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35488

碰之道 [1] (2024/01/06 09:17 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36868

SPY×FAMILY 間諜家家酒 [25] (2024/01/06 07:54 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=32086

SPY×FAMILY 間諜家家酒 [24] (2024/01/06 07:26 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=32085

SPY×FAMILY 間諜家家酒 [23] (2024/01/06 07:19 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=32084

SPY×FAMILY 間諜家家酒 [21] (2024/01/06 07:12 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=31884

KIRARIN 花漾明星 [1] (2024/01/06 06:59 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35908

鴨乃橋論的禁忌推理 [13] (2024/01/05 08:24 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36575

鴨乃橋論的禁忌推理 [12] (2024/01/05 02:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36404

鴨乃橋論的禁忌推理 [11] (2024/01/05 02:10 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36274

鴨乃橋論的禁忌推理 [10] (2024/01/05 02:07 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36208

鴨乃橋論的禁忌推理 [9] (2024/01/04 09:16 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36141

鴨乃橋論的禁忌推理 [8] (2024/01/04 09:14 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36017

鴨乃橋論的禁忌推理 [7] (2024/01/04 08:13 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35856

鴨乃橋論的禁忌推理 [6] (2024/01/04 06:15 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35797

鴨乃橋論的禁忌推理 [5] (2024/01/04 06:15 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35628

鴨乃橋論的禁忌推理 [4] (2023/12/25 06:58 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35627

鴨乃橋論的禁忌推理 [3] (2023/12/24 12:41 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35377

鴨乃橋論的禁忌推理 [1] (2023/12/22 10:00 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35360

鴨乃橋論的禁忌推理 [2] (2023/12/22 12:38 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35376

Dr.STONE 新石紀 第三季 [22] (2024/01/05 02:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36568

Dr.STONE 新石紀 第三季 [21] (2024/01/03 03:47 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36343

Dr.STONE 新石紀 第三季 [20] (2024/01/03 03:46 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36231

Dr.STONE 新石紀 第三季 [19] (2024/01/03 03:00 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36170

Dr.STONE 新石紀 第三季 [18] (2024/01/03 02:31 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36100

Dr.STONE 新石紀 第三季 [17] (2024/01/03 02:09 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35982

Dr.STONE 新石紀 第三季 [16] (2024/01/03 01:37 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35817

Dr.STONE 新石紀 第三季 [15] (2024/01/02 11:26 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35746

Dr.STONE 新石紀 第三季 [14] (2023/12/18 01:02 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35678

Dr.STONE 新石紀 第三季 [13] (2023/12/18 12:24 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35421

Dr.STONE 新石紀 第三季 [12] (2023/12/17 10:24 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35420

Dr.STONE 新石紀 第三季 [1] (2023/12/17 10:24 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33256

我的新上司是天然呆 [12] (2024/01/04 06:13 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36541

我的新上司是天然呆 [11] (2024/01/04 03:58 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36358

我的新上司是天然呆 [10] (2024/01/04 03:34 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36248

我的新上司是天然呆 [9] (2024/01/04 03:10 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36185

我的新上司是天然呆 [8] (2024/01/04 02:45 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36116

我的新上司是天然呆 [7] (2024/01/02 07:11 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36034

我的新上司是天然呆 [6] (2023/12/14 12:02 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35833

我的新上司是天然呆 [5] (2023/12/14 06:59 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35769

我的新上司是天然呆 [4] (2023/12/11 11:44 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35648

Paradox Live THE ANIMATION [7] (2024/01/04 01:43 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35892

Paradox Live THE ANIMATION [6] (2024/01/04 01:14 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35792

Paradox Live THE ANIMATION [5] (2024/01/04 12:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35612

Paradox Live THE ANIMATION [4] (2024/01/04 12:26 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35611

Paradox Live THE ANIMATION [3] (2024/01/04 12:02 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35397

Paradox Live THE ANIMATION [2] (2024/01/03 11:30 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35396

Paradox Live THE ANIMATION [1] (2024/01/03 11:29 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35395

Paradox Live THE ANIMATION [10] (2023/12/31 10:58 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36308

Paradox Live THE ANIMATION [9] (2023/12/31 10:34 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36223

Paradox Live THE ANIMATION [8] (2023/12/31 10:10 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36052

宇宙兄弟 #0  [電影] (2024/01/03 06:50 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33208

後宮之烏 [3] (2024/01/02 09:03 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=31506

後宮之烏 [2] (2024/01/02 08:40 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=31505

後宮之烏 [1] (2024/01/02 08:16 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=31504

青春豬頭少年不會夢到嬌憐外出妹 [電影] (2024/01/02 07:11 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36625

川越男子歌唱團 [7] (2024/01/02 12:07 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36018

催眠麥克風 [1] (2024/01/01 11:49 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=18429

殭屍 100~在成為殭屍前要做的 100 件事~ [12] (2024/01/01 11:47 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36062

殭屍 100~在成為殭屍前要做的 100 件事~ [11] (2024/01/01 10:56 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35130

殭屍 100~在成為殭屍前要做的 100 件事~ [10] (2024/01/01 02:47 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35129

殭屍 100~在成為殭屍前要做的 100 件事~ [9] (2024/01/01 02:26 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=34912

殭屍 100~在成為殭屍前要做的 100 件事~ [8] (2023/12/31 06:00 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=34746

殭屍 100~在成為殭屍前要做的 100 件事~ [7] (2023/12/31 05:59 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=34608

柚木家的四兄弟 [12] (2024/01/01 10:37 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36564

柚木家的四兄弟 [11] (2024/01/01 08:45 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36341

柚木家的四兄弟 [10] (2024/01/01 05:00 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36229

柚木家的四兄弟 [9] (2023/12/31 04:53 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36098

『催眠麥克風-Division Rap Battle-』Rhyme Anima + [1] (2024/01/01 01:54 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35448

競速 OVERTAKE! [5] (2023/12/31 01:34 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35642

競速 OVERTAKE! [4] (2023/12/31 01:10 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35507

競速 OVERTAKE! [3] (2023/12/31 12:47 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35506

競速 OVERTAKE! [2] (2023/12/31 12:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35505

競速 OVERTAKE! [1] (2023/12/31 12:13 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35346

來自繽紛世界的明日 [1] (2023/12/31 12:12 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36612

B-PROJECT~絕頂*Emotion~ [1] (2023/12/28 02:54 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11410

閃電霹靂車 [37] (2023/12/28 02:52 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=28303

某大叔的 VRMMO 活動記 [12] (2023/12/22 12:36 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36399

某大叔的 VRMMO 活動記 [11] (2023/12/21 07:43 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36269

某大叔的 VRMMO 活動記 [9] (2023/12/21 07:43 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36136

某大叔的 VRMMO 活動記 [10] (2023/12/21 06:48 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36203

某大叔的 VRMMO 活動記 [8] (2023/12/20 09:20 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36012

某大叔的 VRMMO 活動記 [7] (2023/12/20 09:20 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35851

某大叔的 VRMMO 活動記 [6] (2023/12/20 12:47 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35787

某大叔的 VRMMO 活動記 [5] (2023/12/13 07:17 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35618

某大叔的 VRMMO 活動記 [4] (2023/12/12 07:03 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35617

某大叔的 VRMMO 活動記 [3] (2023/12/11 06:55 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35385

從零開始的魔法書 [12] (2023/12/19 07:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36611

從零開始的魔法書 [11] (2023/12/19 07:37 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36610

從零開始的魔法書 [10] (2023/12/19 06:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36609

從零開始的魔法書 [9] (2023/12/19 06:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36608

從零開始的魔法書 [8] (2023/12/18 06:25 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36607

從零開始的魔法書 [7] (2023/12/18 06:53 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36606

從零開始的魔法書 [6] (2023/12/17 02:21 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36605

從零開始的魔法書 [5] (2023/12/17 01:30 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36604

從零開始的魔法書 [4] (2023/12/17 01:06 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36603

從零開始的魔法書 [3] (2023/12/17 12:42 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36602

從零開始的魔法書 [2] (2023/12/17 12:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36601

從零開始的魔法書 [1] (2023/12/16 11:54 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36600

屍體如山的死亡遊戲 [2] (2023/12/14 12:22 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33308

屍體如山的死亡遊戲 [1] (2023/12/13 11:36 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=33307

我的英雄學院 雄英 HEROES BATTLE [1] (2023/12/12 02:00 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36336

隊長小翼 Season2 青少年篇 [11] (2023/12/11 01:12 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36242

2024/03/08 12:14 PM [週五]
總輸出:463 筆觀看記錄
巴哈姆特動畫瘋 觀看記錄一秒複製
https://ani.gamer.com.tw/viewList.php

魔法科高中的劣等生 第三季 [2] (12 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=37864

魔法科高中的劣等生 第三季 [1] (2024/04/11 05:28 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37863

關於我轉生變成史萊姆這檔事 第三季 [49] (12 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=37860

關於我轉生變成史萊姆這檔事 第三季 [48.5] (2024/03/31 08:25 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37760

怪人的沙拉碗 [1] (12 小時前)
https://ani.gamer.com.tw/animeVideo.php?sn=37848

怪人的沙拉碗 [2] (2024/04/14 03:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37849

夜櫻家大作戰 [1] (昨天 20:43)
https://ani.gamer.com.tw/animeVideo.php?sn=37898

王者天下 第五季 [5] (昨天 20:43)
https://ani.gamer.com.tw/animeVideo.php?sn=37766

王者天下 第五季 [4] (昨天 16:39)
https://ani.gamer.com.tw/animeVideo.php?sn=37765

王者天下 第五季 [3] (昨天 16:14)
https://ani.gamer.com.tw/animeVideo.php?sn=37746

王者天下 第五季 [2] (昨天 15:49)
https://ani.gamer.com.tw/animeVideo.php?sn=37745

王者天下 第五季 [1] (2024/03/27 10:31 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37744

吉伊卡哇 [22] (昨天 15:48)
https://ani.gamer.com.tw/animeVideo.php?sn=36816

吉伊卡哇 [21] (昨天 15:45)
https://ani.gamer.com.tw/animeVideo.php?sn=36815

吉伊卡哇 [20] (昨天 15:43)
https://ani.gamer.com.tw/animeVideo.php?sn=36651

吉伊卡哇 [19] (昨天 15:41)
https://ani.gamer.com.tw/animeVideo.php?sn=36650

吉伊卡哇 [18] (昨天 15:39)
https://ani.gamer.com.tw/animeVideo.php?sn=36649

吉伊卡哇 [17] (昨天 15:38)
https://ani.gamer.com.tw/animeVideo.php?sn=36648

吉伊卡哇 [16] (昨天 15:36)
https://ani.gamer.com.tw/animeVideo.php?sn=36647

吉伊卡哇 [15] (昨天 15:34)
https://ani.gamer.com.tw/animeVideo.php?sn=36646

吉伊卡哇 [14] (昨天 15:33)
https://ani.gamer.com.tw/animeVideo.php?sn=36645

吉伊卡哇 [13] (昨天 15:31)
https://ani.gamer.com.tw/animeVideo.php?sn=36644

為美好的世界獻上祝福!3 [1] (前天 05:39)
https://ani.gamer.com.tw/animeVideo.php?sn=37832

格鬥實況 [1] (2024/04/15 12:23 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37840

花野井同學與戀愛病 [1] (2024/04/15 09:58 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37828

失憶投捕 [1] (2024/04/15 09:33 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37927

聲優廣播的幕前幕後 [1] (2024/04/15 09:09 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37830

WIND BREAKER—防風少年— [2] (2024/04/15 12:39 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37838

WIND BREAKER—防風少年— [1] (2024/04/15 12:06 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37837

身為魔王的我娶了奴隸精靈為妻,該如何表白我的愛? [3] (2024/04/13 09:05 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37847

身為魔王的我娶了奴隸精靈為妻,該如何表白我的愛? [2] (2024/04/13 08:41 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37846

身為魔王的我娶了奴隸精靈為妻,該如何表白我的愛? [1] (2024/04/13 08:18 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37845

偶像大師 閃耀色彩 [1] (2024/04/12 11:41 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37935

FAIRY TAIL 魔導少年 最終章 [287] (2024/04/12 02:36 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=11218

FAIRY TAIL 魔導少年 最終章 [286] (2024/04/12 02:36 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=11217

FAIRY TAIL 魔導少年 最終章 [285] (2024/04/12 12:35 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=11106

FAIRY TAIL 魔導少年 最終章 [284] (2024/04/09 11:12 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=11105

FAIRY TAIL 魔導少年 最終章 [283] (2024/04/09 09:33 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10962

FAIRY TAIL 魔導少年 最終章 [282] (2024/04/09 09:09 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10961

FAIRY TAIL 魔導少年 最終章 [281] (2024/04/09 08:45 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10960

FAIRY TAIL 魔導少年 最終章 [280] (2024/04/09 08:21 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10860

FAIRY TAIL 魔導少年 最終章 [279] (2024/04/09 07:58 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10859

FAIRY TAIL 魔導少年 最終章 [278] (2024/04/09 06:17 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10923

龍族 [特別篇] (2024/04/12 12:33 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37879

我內心的糟糕念頭 [12] (2024/04/11 07:57 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33796

我內心的糟糕念頭 [11] (2024/04/11 07:26 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33755

我內心的糟糕念頭 [10] (2024/04/11 06:59 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33754

我內心的糟糕念頭 [9] (2024/04/11 06:58 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33676

我內心的糟糕念頭 [8] (2024/04/11 06:29 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33570

我內心的糟糕念頭 [7] (2024/04/11 06:06 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=33538

王牌酒保 Glass of God [1] (2024/04/11 05:41 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37826

轉生為第七王子,隨心所欲的魔法學習之路 [2] (2024/04/10 07:22 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37784

轉生為第七王子,隨心所欲的魔法學習之路 [1] (2024/04/02 01:07 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37783

無職轉生~到了異世界就拿出真本事 第二季 [13] (2024/04/10 06:57 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37911

無職轉生~到了異世界就拿出真本事 第二季 [1] (2024/04/10 06:56 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=34092

無職轉生~到了異世界就拿出真本事 第二季 [2] (2024/04/02 06:07 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=34213

關於我轉生變成史萊姆這檔事 柯里烏斯之夢 [3] [特別篇] (2024/04/09 08:14 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35863

關於我轉生變成史萊姆這檔事 柯里烏斯之夢 [2] [特別篇] (2024/04/09 07:29 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35862

關於我轉生變成史萊姆這檔事 柯里烏斯之夢 [1] [特別篇] (2024/04/09 06:54 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35861Lv2 開始開外掛的前勇者候補過著悠哉異世界生活 [1] (2024/04/09 12:39 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37775

我的英雄學院 第七季 [1] (2024/04/08 11:48 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37932

單人房、日照一般、附天使。 [1] (2024/04/08 10:57 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37874

轉生貴族憑鑑定技能扭轉人生 [1] (2024/04/08 12:11 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37914

老夫老妻重返青春 [1] (2024/04/08 09:16 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37905

黃金神威 [8] (2024/04/07 03:35 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9838

黃金神威 [7] (2024/04/07 03:11 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9837

黃金神威 [6] (2024/04/07 02:47 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9836

黃金神威 [5] (2024/04/07 02:22 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9835

黃金神威 [4] (2024/04/07 01:58 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9679

黃金神威 [3] (2024/04/07 01:34 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9678

黃金神威 [2] (2024/04/07 01:09 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9677

黃金神威 [1] (2024/04/07 12:47 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=9676

鄰人似銀河 [6] (2024/04/07 06:02 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33536

鄰人似銀河 [5] (2024/04/07 12:19 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33462

鄰人似銀河 [4] (2024/04/06 11:55 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33376

鄰人似銀河 [3] (2024/04/06 11:31 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33342

鄰人似銀河 [2] (2024/04/06 11:04 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33341

鄰人似銀河 [1] (2024/04/06 09:24 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=33291

KERORO 軍曹 [51] (2024/04/06 08:46 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=18872

弱角友崎同學 2nd STAGE [5] (2024/04/06 07:19 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37003

弱角友崎同學 2nd STAGE [4] (2024/04/06 06:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36939

弱角友崎同學 2nd STAGE [3] (2024/04/06 06:31 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36839

弱角友崎同學 2nd STAGE [2] (2024/04/06 06:07 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36838

弱角友崎同學 2nd STAGE [1] (2024/04/06 05:48 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36837

神明渴求著遊戲。 [1] (2024/04/05 09:27 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37922

關於我們把節目全部丟給聲優那件事 [1] (2024/04/05 07:31 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37854

治癒魔法的錯誤使用法 [13] (2024/04/04 12:41 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37667

治癒魔法的錯誤使用法 [12] (2024/04/04 12:37 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37666

治癒魔法的錯誤使用法 [11] (2024/03/31 09:56 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37627

治癒魔法的錯誤使用法 [10] (2024/03/31 09:33 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37406

治癒魔法的錯誤使用法 [9] (2024/03/31 09:33 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37405

治癒魔法的錯誤使用法 [8] (2024/03/02 07:22 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37363

治癒魔法的錯誤使用法 [7] (2024/02/24 03:42 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37236

治癒魔法的錯誤使用法 [6] (2024/02/24 02:19 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37099

治癒魔法的錯誤使用法 [5] (2024/02/17 05:30 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37033

治癒魔法的錯誤使用法 [4] (2024/02/15 07:08 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36992

治癒魔法的錯誤使用法 [3] (2024/01/21 05:42 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36860

治癒魔法的錯誤使用法 [2] (2024/01/20 10:40 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36859

小酒館 Basue [5] (2024/04/03 11:08 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37097

小酒館 Basue [10] (2024/04/02 09:15 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37625

小酒館 Basue [9] (2024/04/02 08:46 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37402

小酒館 Basue [8] (2024/04/02 08:22 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37401

小酒館 Basue [7] (2024/04/02 07:58 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37360

小酒館 Basue [6] (2024/04/02 07:34 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37234

小酒館 Basue [4] (2024/04/02 06:28 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37031

小酒館 Basue [3] (2024/03/26 05:58 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36959

小酒館 Basue [2] (2024/03/24 04:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36958

小酒館 Basue [1] (2024/03/23 11:05 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36957

戰國妖狐 [1] (2024/04/03 01:49 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36927

Re:Monster [1] (2024/04/02 01:36 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37780

我獨自升級 [12] (2024/04/02 06:08 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37652

我獨自升級 [11] (2024/04/01 09:19 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37651

我獨自升級 [10] (2024/03/31 11:52 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37617

我獨自升級 [9] (2024/03/17 08:31 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37473

我獨自升級 [8] (2024/03/16 10:51 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37458

我獨自升級 [7.5] (2024/03/16 01:19 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37351

我獨自升級 [7] (2024/03/16 01:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37225

我獨自升級 [6] (2024/03/16 08:13 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37088

我獨自升級 [5] (2024/03/16 07:52 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37022

我獨自升級 [4] (2024/03/16 07:52 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36983

我獨自升級 [3] (2024/02/17 12:03 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36884

我獨自升級 [2] (2024/01/31 08:07 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36883

我獨自升級 [1] (2024/01/31 07:22 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36882

遊戲王 怪獸之決鬥 [1] (2024/04/02 05:10 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37786

反派千金等級 99~我是隱藏頭目但不是魔王~ [12] (2024/04/01 10:32 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37702

反派千金等級 99~我是隱藏頭目但不是魔王~ [11] (2024/04/01 10:32 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37701

反派千金等級 99~我是隱藏頭目但不是魔王~ [10] (2024/03/22 09:14 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37589

反派千金等級 99~我是隱藏頭目但不是魔王~ [9] (2024/03/14 10:44 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37442

反派千金等級 99~我是隱藏頭目但不是魔王~ [8] (2024/03/02 12:15 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37372

反派千金等級 99~我是隱藏頭目但不是魔王~ [6] (2024/03/01 06:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37111

反派千金等級 99~我是隱藏頭目但不是魔王~ [1] (2024/03/01 06:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36924

反派千金等級 99~我是隱藏頭目但不是魔王~ [7] (2024/02/23 06:32 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37270

反派千金等級 99~我是隱藏頭目但不是魔王~ [5] (2024/02/15 05:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37066

反派千金等級 99~我是隱藏頭目但不是魔王~ [4] (2024/02/08 03:14 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36969

反派千金等級 99~我是隱藏頭目但不是魔王~ [3] (2024/02/08 03:14 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36926

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [24] (2024/04/01 09:30 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37769

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [23] (2024/03/31 07:58 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37654

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [22] (2024/03/31 07:31 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37619

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [21] (2024/03/31 07:30 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37475

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [20] (2024/03/10 05:06 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37353

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [19] (2024/02/27 03:31 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37227

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [18] (2024/02/26 10:11 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37090

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [17] (2024/02/13 12:17 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37024

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [16] (2024/02/04 02:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36984

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [15] (2024/02/04 01:04 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36881

肌肉魔法使-MASHLE- 神覺者候補選拔試驗篇 [14] (2024/01/21 07:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36880

BLOOD LAD 血意少年 [2] (2024/04/01 12:29 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=7914

BLOOD LAD 血意少年 [6] (2024/04/01 12:20 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=7918

BLOOD LAD 血意少年 [5] (2024/03/31 08:51 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=7917

BLOOD LAD 血意少年 [4] (2024/03/31 08:26 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=7916

BLOOD LAD 血意少年 [3] (2024/03/31 08:01 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=7915

BLOOD LAD 血意少年 [1] (2024/03/31 06:47 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=7913

和山田談場 Lv999 的戀愛 [7] (2024/04/01 12:20 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=33535

和山田談場 Lv999 的戀愛 [6] (2024/03/31 03:39 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33461

和山田談場 Lv999 的戀愛 [5] (2024/03/31 03:13 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33375

和山田談場 Lv999 的戀愛 [4] (2024/03/31 02:46 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33340

和山田談場 Lv999 的戀愛 [3] (2024/03/31 02:22 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33339

和山田談場 Lv999 的戀愛 [2] (2024/03/31 01:57 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33290

和山田談場 Lv999 的戀愛 [1] (2024/03/31 01:57 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33249

劇場版 IDOLiSH7 - 偶像星願 - LIVE 4bit BEYOND THE PERiOD DAY1 [電影] (2024/03/31 09:13 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37771

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [12] (2024/03/31 09:05 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37679

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [11] (2024/03/31 08:40 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37598

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [10] (2024/03/17 09:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37419

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [9] (2024/03/11 04:57 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37418

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [8] (2024/02/23 09:11 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37337

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [7] (2024/02/23 08:24 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37166

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [6] (2024/02/23 08:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37106

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [5] (2024/02/23 07:36 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37009

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [4] (2024/02/23 06:37 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36995

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [3] (2024/02/19 01:44 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36851

秒殺外掛太強了,異世界的傢伙們根本就不是對手。 [2] (2024/01/22 11:25 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36850

勇氣爆發 BANG BRAVERN [12] (2024/03/31 06:58 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37683

勇氣爆發 BANG BRAVERN [11] (2024/03/31 06:36 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37682

勇氣爆發 BANG BRAVERN [10] (2024/03/31 06:36 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37601

勇氣爆發 BANG BRAVERN [9] (2024/03/11 04:18 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37425

勇氣爆發 BANG BRAVERN [8] (2024/03/10 11:42 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37424

勇氣爆發 BANG BRAVERN [7] (2024/03/02 06:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37340

勇氣爆發 BANG BRAVERN [6] (2024/02/25 06:57 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37169

勇氣爆發 BANG BRAVERN [5] (2024/02/15 12:43 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37109

勇氣爆發 BANG BRAVERN [4] (2024/02/09 02:56 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37012

勇氣爆發 BANG BRAVERN [3] (2024/02/04 02:44 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36944

勇氣爆發 BANG BRAVERN [2] (2024/01/26 12:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36943

我內心的糟糕念頭 第二季 [20] (2024/03/26 11:25 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37348

我內心的糟糕念頭 第二季 [19] (2024/03/26 12:03 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37222

我內心的糟糕念頭 第二季 [18] (2024/03/26 11:37 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37085

我內心的糟糕念頭 第二季 [17] (2024/03/26 10:57 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37019

我內心的糟糕念頭 第二季 [16] (2024/03/26 10:14 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36980

我內心的糟糕念頭 第二季 [15] (2024/03/26 08:49 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36893

我內心的糟糕念頭 第二季 [14] (2024/03/26 08:45 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36892

我內心的糟糕念頭 第二季 [13] (2024/03/21 01:27 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36891

魔都精兵的奴隸 [12] (2024/03/26 08:22 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37684

魔都精兵的奴隸 [11] (2024/03/26 08:22 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37602

魔都精兵的奴隸 [10] (2024/03/15 08:04 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37427

魔都精兵的奴隸 [9] (2024/03/15 08:04 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37426

魔都精兵的奴隸 [8] (2024/02/25 11:30 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37341

魔都精兵的奴隸 [7] (2024/02/25 08:44 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37170

魔都精兵的奴隸 [6] (2024/02/16 06:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37110

魔都精兵的奴隸 [5] (2024/02/16 03:02 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37013

魔都精兵的奴隸 [4] (2024/02/16 01:37 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36996

魔都精兵的奴隸 [3] (2024/02/16 12:35 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36848

魔都精兵的奴隸 [2] (2024/02/16 10:59 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36847

魔都精兵的奴隸 [1] (2024/02/09 09:33 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36846

吸血鬼僕人 [9] (2024/03/26 08:18 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=6180

吸血鬼僕人 [8] (2024/03/26 08:11 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=6179

吸血鬼僕人 [12] (2024/03/22 02:50 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=6316

吸血鬼僕人 [11] (2024/03/17 11:20 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=6315

吸血鬼僕人 [10] (2024/03/17 10:56 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=6314

吸血鬼僕人 [7] (2024/03/17 09:36 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=6178

吸血鬼僕人 [6] (2024/03/17 09:15 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=5892

吸血鬼僕人 [5] (2024/03/17 08:55 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=5891

吸血鬼僕人 [4] (2024/03/17 01:33 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=5890

吸血鬼僕人 [3] (2024/03/15 12:26 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=5889

吸血鬼僕人 [2] (2024/03/15 12:04 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=5862

吸血鬼僕人 [1] (2024/03/15 11:41 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=5859

劇場版 吸血鬼僕人 -Alice in the Garden- [電影] (2024/03/26 08:11 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=10991

葬送的芙莉蓮 [26] (2024/03/25 05:14 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37408

葬送的芙莉蓮 [25] (2024/03/24 10:44 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37407

葬送的芙莉蓮 [24] (2024/02/25 06:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37362

葬送的芙莉蓮 [23] (2024/02/17 04:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37237

葬送的芙莉蓮 [22] (2024/02/16 07:46 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37100

葬送的芙莉蓮 [21] (2024/02/11 12:12 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37034

葬送的芙莉蓮 [20] (2024/02/10 09:36 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36991

葬送的芙莉蓮 [19] (2024/02/10 07:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36862

葬送的芙莉蓮 [18] (2024/02/10 07:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36861

葬送的芙莉蓮 [17] (2024/02/10 06:42 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36554

葬送的芙莉蓮 [16] (2024/02/10 03:47 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36553

葬送的芙莉蓮 [15] (2024/02/06 05:20 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36371

葬送的芙莉蓮 [14] (2024/02/06 04:50 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36260

葬送的芙莉蓮 [13] (2024/02/06 04:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36196

葬送的芙莉蓮 [12] (2024/02/06 03:34 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36128

葬送的芙莉蓮 [11] (2024/02/06 03:15 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36046

葬送的芙莉蓮 [10] (2024/02/06 03:14 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35845

葬送的芙莉蓮 [9] (2024/02/06 12:53 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35781

葬送的芙莉蓮 [8] (2024/02/05 07:28 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35660

葬送的芙莉蓮 [7] (2024/02/05 09:58 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35447

葬送的芙莉蓮 [6] (2024/02/05 09:34 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35446

葬送的芙莉蓮 [5] (2024/02/05 09:10 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35445

葬送的芙莉蓮 [4] (2024/02/05 08:02 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35244

葬送的芙莉蓮 [3] (2024/02/05 04:14 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35243

葬送的芙莉蓮 [2] (2024/02/05 03:53 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35242

葬送的芙莉蓮 [1] (2024/01/21 01:01 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35241

競速 OVERTAKE! [10] (2024/03/22 07:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36178

競速 OVERTAKE! [9] (2024/03/22 06:58 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36109

競速 OVERTAKE! [8] (2024/03/18 05:05 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36027

競速 OVERTAKE! [7] (2024/03/12 01:16 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35826

競速 OVERTAKE! [12] (2024/03/12 01:16 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36351

競速 OVERTAKE! [11] (2024/03/11 11:30 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36241

競速 OVERTAKE! [6] (2024/03/11 12:51 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35763

競速 OVERTAKE! [5] (2024/03/09 01:06 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35642

競速 OVERTAKE! [4] (2024/03/09 12:43 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35507

競速 OVERTAKE! [3] (2024/03/09 12:19 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35506

競速 OVERTAKE! [2] (2024/03/09 11:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35505

競速 OVERTAKE! [1] (2024/03/09 11:30 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35346

休假的壞人先生 [11] (2024/03/22 02:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37608

休假的壞人先生 [10] (2024/03/13 08:38 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37464

休假的壞人先生 [9] (2024/03/07 06:54 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37449

休假的壞人先生 [8] (2024/03/02 12:16 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37342

休假的壞人先生 [7] (2024/02/26 05:18 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37216

休假的壞人先生 [6] (2024/02/26 03:34 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37079

休假的壞人先生 [5] (2024/02/14 12:43 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37014

休假的壞人先生 [4] (2024/02/11 01:08 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36975

休假的壞人先生 [1] (2024/02/03 06:26 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36904

休假的壞人先生 [3] (2024/01/30 09:52 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36906

休假的壞人先生 [2] (2024/01/25 12:02 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36905

不死不運 [23] (2024/03/18 04:30 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37624

不死不運 [22] (2024/03/12 11:49 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37400

不死不運 [21] (2024/03/11 04:31 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37399

不死不運 [20] (2024/03/11 04:31 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=37359

不死不運 [19] (2024/02/25 05:00 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37233

不死不運 [18] (2024/02/24 09:48 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37096

不死不運 [17] (2024/02/24 09:33 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37030

不死不運 [16] (2024/02/24 09:28 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36989

不死不運 [15] (2024/02/24 09:27 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36867

不死不運 [14] (2024/02/24 09:27 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36866

不死不運 [13] (2024/02/24 09:26 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36626

不死不運 [12] (2024/02/08 08:15 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36549

不死不運 [11] (2024/02/08 07:51 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36368

不死不運 [10] (2024/02/08 07:51 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36257

不死不運 [9] (2024/02/08 07:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36193

不死不運 [8] (2024/01/29 11:15 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36125

不死不運 [7] (2024/01/29 12:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36043

不死不運 [6] (2024/01/29 12:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35842

不死不運 [5] (2024/01/29 12:21 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=35778

不死不運 [4] (2024/01/28 10:40 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35657

不死不運 [3] (2024/01/28 05:24 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35453

不死不運 [2] (2024/01/25 10:07 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35452

不死不運 [1] (2024/01/25 09:42 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35451

婚戒物語 [10] (2024/03/16 08:19 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37477

婚戒物語 [9] (2024/03/15 07:40 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37461

婚戒物語 [8] (2024/03/14 11:35 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37355

婚戒物語 [7] (2024/03/14 11:13 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37229

婚戒物語 [6] (2024/03/14 11:13 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37092

婚戒物語 [5] (2024/03/14 12:01 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37026

婚戒物語 [4] (2024/03/14 05:56 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36986

婚戒物語 [3] (2024/03/14 03:58 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36875

婚戒物語 [2] (2024/03/13 06:00 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36874

婚戒物語 [1] (2024/03/13 05:59 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36873

非自願的不死冒險者 [10] (2024/03/15 11:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37412

非自願的不死冒險者 [9] (2024/03/03 03:18 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37411

非自願的不死冒險者 [8] (2024/02/25 05:53 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37365

非自願的不死冒險者 [7] (2024/02/17 03:52 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37239

非自願的不死冒險者 [6] (2024/02/17 03:28 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37102

非自願的不死冒險者 [5] (2024/02/17 03:00 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37036

非自願的不死冒險者 [4] (2024/02/17 02:39 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36993

非自願的不死冒險者 [3] (2024/02/17 02:17 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36857

非自願的不死冒險者 [2] (2024/02/17 01:55 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36856

非自願的不死冒險者 [1] (2024/02/17 01:27 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36855

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [10] (2024/03/15 10:31 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37465

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [9] (2024/03/15 10:06 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37450

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [8] (2024/03/15 10:05 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37343

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [7] (2024/03/02 03:50 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37217

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [6] (2024/03/02 03:49 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37080

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [5] (2024/02/09 02:55 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37015

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [4] (2024/02/08 05:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36976

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [3] (2024/01/29 09:50 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36903

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [2] (2024/01/21 10:40 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36902

輪迴七次的惡役千金,在前敵國享受隨心所欲的新婚生活 [1] (2024/01/21 10:18 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36901

月光下的異世界之旅 第二季 [10] (2024/03/14 03:40 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37566

月光下的異世界之旅 第二季 [9] (2024/03/14 01:20 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37445

月光下的異世界之旅 第二季 [8] (2024/03/02 09:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37369

月光下的異世界之旅 第二季 [7] (2024/02/27 05:38 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37273

月光下的異世界之旅 第二季 [6] (2024/02/16 09:58 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37077

月光下的異世界之旅 第二季 [5] (2024/02/16 09:12 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37063

月光下的異世界之旅 第二季 [4] (2024/02/16 08:50 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36972

月光下的異世界之旅 第二季 [3] (2024/02/16 08:25 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36917

月光下的異世界之旅 第二季 [2] (2024/02/16 08:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36916

月光下的異世界之旅 第二季 [1] (2024/02/16 07:53 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36915

女王的手術刀 [9] (2024/03/12 06:23 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37439

女王的手術刀 [8] (2024/03/07 07:03 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37438

女王的手術刀 [7] (2024/03/01 11:16 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37330

女王的手術刀 [6] (2024/03/01 11:16 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37117

女王的手術刀 [5] (2024/02/15 07:21 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37072

女王的手術刀 [4] (2024/02/09 01:07 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37002

女王的手術刀 [3] (2024/02/09 12:44 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36932

女王的手術刀 [2] (2024/01/25 10:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36931

女王的手術刀 [1] (2024/01/21 09:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36930

如果 30 歲還是處男,似乎就能成為魔法師 [9] (2024/03/12 06:23 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=37431

如果 30 歲還是處男,似乎就能成為魔法師 [8] (2024/03/10 06:51 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37430

如果 30 歲還是處男,似乎就能成為魔法師 [7] (2024/03/09 06:59 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37326

如果 30 歲還是處男,似乎就能成為魔法師 [6] (2024/03/09 06:58 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37113

如果 30 歲還是處男,似乎就能成為魔法師 [5] (2024/03/02 03:40 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37068

如果 30 歲還是處男,似乎就能成為魔法師 [4] (2024/02/16 10:39 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36998

如果 30 歲還是處男,似乎就能成為魔法師 [3] (2024/02/16 10:38 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36935

新次元!蠟筆小新電影超能力大決戰~飛吧!手卷壽司~ [電影] (2024/03/10 11:42 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37637

關於我轉生變成史萊姆這檔事劇場版 紅蓮之絆篇 [電影] (2024/03/10 05:11 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=33122

蠟筆小新:我的超時空新娘 [電影] (2024/03/09 11:12 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=786

現實主義勇者的王國重建記 [1] (2024/03/09 11:11 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=23364

Fate/kaleid liner 魔法少女☆伊莉雅 [1] (2024/03/09 11:11 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=7956

我喜歡的女孩忘記戴眼鏡 [1] (2024/03/09 11:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=34071

杜鵑婚約 [1] (2024/03/09 11:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=29074

你還是不懂群馬 [1] (2024/03/09 11:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=22643

通靈王 (2001) [1] (2024/03/09 11:09 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=23806

閃電霹靂車 [1] (2024/03/09 11:09 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=28237

KIRARIN 花漾明星 [1] (2024/03/09 11:08 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=35908

新網球王子 [1] (2024/03/09 11:08 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=9474

永久少年 Eternal Boys [11] (2024/03/08 01:05 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37383

永久少年 Eternal Boys [6] (2024/03/08 01:04 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37378

永久少年 Eternal Boys [1] (2024/03/08 01:04 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=37373

FAIRY TAIL 魔導少年 [277] (2024/03/08 12:39 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=6255

撿走被人悔婚的千金,教會她壞壞的幸福生活 [3] (2024/03/08 05:24 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35404

撿走被人悔婚的千金,教會她壞壞的幸福生活 [12] (2024/03/08 05:14 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36504

撿走被人悔婚的千金,教會她壞壞的幸福生活 [11] (2024/03/08 04:45 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36334

撿走被人悔婚的千金,教會她壞壞的幸福生活 [10] (2024/03/08 04:22 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36219

撿走被人悔婚的千金,教會她壞壞的幸福生活 [9] (2024/03/08 03:58 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36163

撿走被人悔婚的千金,教會她壞壞的幸福生活 [8] (2024/03/08 03:34 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36092

撿走被人悔婚的千金,教會她壞壞的幸福生活 [7] (2024/03/08 03:10 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35943

撿走被人悔婚的千金,教會她壞壞的幸福生活 [6] (2024/03/08 03:10 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=35809

狩龍人拉格納 [20] (2024/03/07 12:18 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37459

狩龍人拉格納 [19] (2024/03/07 08:48 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37352

狩龍人拉格納 [18] (2024/03/07 08:27 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37226

狩龍人拉格納 [17] (2024/03/06 12:20 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37089

狩龍人拉格納 [16] (2024/03/06 11:53 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37023

狩龍人拉格納 [15] (2024/03/06 09:50 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36964

狩龍人拉格納 [14] (2024/03/05 09:48 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=36963

狩龍人拉格納 [13] (2024/03/04 07:48 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36539

狩龍人拉格納 [12] (2024/03/03 09:56 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36360

狩龍人拉格納 [11] (2024/03/03 09:49 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36250

狩龍人拉格納 [10] (2024/03/03 09:10 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36187

狩龍人拉格納 [9] (2024/03/03 08:03 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36118

狩龍人拉格納 [8] (2024/03/03 07:39 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36036

狩龍人拉格納 [7] (2024/03/03 06:57 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35835

狩龍人拉格納 [6] (2024/03/03 05:28 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35771

狩龍人拉格納 [5] (2024/03/03 04:42 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35650

狩龍人拉格納 [4] (2024/03/03 01:48 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35480

狩龍人拉格納 [3] (2024/03/03 11:47 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35479

狩龍人拉格納 [2] (2024/03/03 11:46 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35478

狩龍人拉格納 [1] (2024/03/03 07:50 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=35246

我的推是壞人大小姐。 [12] (2024/03/02 08:57 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36402

我的推是壞人大小姐。 [11] (2024/02/29 05:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36272

我的推是壞人大小姐。 [10] (2024/02/29 04:50 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36206

我的推是壞人大小姐。 [9] (2024/02/29 04:27 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36139

我的推是壞人大小姐。 [8] (2024/02/29 03:39 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36015

我的推是壞人大小姐。 [7] (2024/02/29 02:54 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35854

我的推是壞人大小姐。 [6] (2024/02/29 02:26 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35795

我的推是壞人大小姐。 [5] (2024/02/29 01:55 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35624

我的推是壞人大小姐。 [4] (2024/02/29 01:44 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35623

我的推是壞人大小姐。 [3] (2024/02/29 01:42 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=35381

我的推是壞人大小姐。 [2] (2024/02/28 07:22 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35380

我的推是壞人大小姐。 [1] (2024/02/28 06:50 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=35361

位於戀愛光譜極端的我們 [1] (2024/02/27 06:01 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35442

世界盡頭的聖騎士 鐵鏽之山的君王 [1] (2024/02/27 05:41 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=35466

隊長小翼 [7] (2024/02/26 07:21 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=9829

聖靈家族 [13] (2024/02/26 03:33 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=1895

聖靈家族 [12] (2024/02/25 11:22 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1894

聖靈家族 [11] (2024/02/25 11:13 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1893

聖靈家族 [10] (2024/02/25 11:11 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1892

聖靈家族 [9] (2024/02/25 02:23 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1891

聖靈家族 [8] (2024/02/25 01:53 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1890

聖靈家族 [7] (2024/02/25 01:49 PM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1889

聖靈家族 [6] (2024/02/25 04:20 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=1888

聖靈家族 [5] (2024/02/21 11:33 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=1887

聖靈家族 [4] (2024/02/21 11:23 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=1886

聖靈家族 [3] (2024/02/20 11:21 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1885

聖靈家族 [2] (2024/02/20 10:57 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1884

聖靈家族 [1] (2024/02/20 10:42 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=1883

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [7] (2024/02/25 08:43 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37223

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [6] (2024/02/25 07:52 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=37086

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [5] (2024/02/17 12:43 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37020

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [4] (2024/02/16 11:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36981

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [3] (2024/02/15 06:30 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36890

最強肉盾的迷宮攻略~擁有稀少技能體力 9999 的肉盾,被勇者隊伍辭退了~ [2] (2024/01/21 06:49 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=36889

烈焰先鋒 救國的橘衣消防員 [11] (2024/02/24 09:26 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36254

烈焰先鋒 救國的橘衣消防員 [12] (2024/02/24 09:07 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36365

青之驅魔師 [1] (2024/02/16 11:10 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=3524

BACCANO!大騷動! [16] (2024/02/15 05:11 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18968

BACCANO!大騷動! [15] (2024/02/15 04:34 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18967

BACCANO!大騷動! [14] (2024/02/15 04:00 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18966

BACCANO!大騷動! [13] (2024/02/15 03:34 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18965

BACCANO!大騷動! [12] (2024/02/15 02:59 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18964

BACCANO!大騷動! [11] (2024/02/15 02:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18963

BACCANO!大騷動! [10] (2024/02/15 02:08 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18962

BACCANO!大騷動! [9] (2024/02/15 11:17 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=18961

BACCANO!大騷動! [8] (2024/02/14 07:23 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18960

BACCANO!大騷動! [7] (2024/02/14 06:58 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18959

BACCANO!大騷動! [6] (2024/02/14 06:51 PM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18958

BACCANO!大騷動! [5] (2024/02/14 01:31 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=18957

BACCANO!大騷動! [4] (2024/02/13 10:27 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=18956

BACCANO!大騷動! [3] (2024/02/13 06:59 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=18955

BACCANO!大騷動! [2] (2024/02/12 07:54 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=18954

BACCANO!大騷動! [1] (2024/02/11 08:39 AM [週日])
https://ani.gamer.com.tw/animeVideo.php?sn=18953

青之驅魔師 島根啟明結社篇 [6] (2024/02/14 05:15 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37087

青之驅魔師 島根啟明結社篇 [5] (2024/02/14 04:53 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=37021

青之驅魔師 島根啟明結社篇 [4] (2024/02/08 06:12 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=36982

青之驅魔師 島根啟明結社篇 [3] (2024/02/03 06:50 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36887

青之驅魔師 島根啟明結社篇 [2] (2024/01/31 06:55 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=36886

我讓最想被擁抱的男人給威脅了 [13] (2024/02/10 06:10 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11395

我讓最想被擁抱的男人給威脅了 [12] (2024/02/10 04:59 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11387

我讓最想被擁抱的男人給威脅了 [11] (2024/02/10 03:58 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11386

我讓最想被擁抱的男人給威脅了 [10] (2024/02/10 03:34 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11385

我讓最想被擁抱的男人給威脅了 [9] (2024/02/10 03:32 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11384

我讓最想被擁抱的男人給威脅了 [8] (2024/02/10 02:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11383

我讓最想被擁抱的男人給威脅了 [7] (2024/02/10 02:00 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=11382

我讓最想被擁抱的男人給威脅了 [6] (2024/02/08 02:09 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11381

我讓最想被擁抱的男人給威脅了 [5] (2024/02/08 01:46 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11380

我讓最想被擁抱的男人給威脅了 [4] (2024/02/08 01:22 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11379

我讓最想被擁抱的男人給威脅了 [3] (2024/02/08 12:57 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11378

我讓最想被擁抱的男人給威脅了 [2] (2024/02/08 12:33 PM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11377

我讓最想被擁抱的男人給威脅了 [1] (2024/02/08 11:53 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=11376

僕愛君愛:致我深愛的每個妳 [電影] (2024/02/10 03:12 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36234

僕愛君愛:致深愛妳的那個我 [電影] (2024/02/09 07:51 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36235

卡片戰鬥!! 先導者 Divinez [4] (2024/02/08 11:31 AM [週四])
https://ani.gamer.com.tw/animeVideo.php?sn=37028

名偵探柯南 [1021] (2024/02/07 07:26 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=26481

名偵探柯南 [1020] (2024/01/30 08:40 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26480

名偵探柯南 [1019] (2024/01/29 11:59 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=26479

名偵探柯南 [1018] (2024/01/26 03:56 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=26478

名偵探柯南 [1017] (2024/01/26 12:36 PM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=26477

名偵探柯南 [1016] (2024/01/23 04:57 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26476

名偵探柯南 [1015] (2024/01/23 01:04 PM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=26475

名偵探柯南 [1014] (2024/01/22 11:27 AM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=26474

K [1] (2024/01/31 06:54 AM [週三])
https://ani.gamer.com.tw/animeVideo.php?sn=10649

愚蠢天使與惡魔共舞 [3] (2024/01/27 08:43 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36920

愚蠢天使與惡魔共舞 [2] (2024/01/27 08:20 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36919

愚蠢天使與惡魔共舞 [1] (2024/01/27 07:56 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36918

最弱魔物使開始了撿垃圾之旅。 [1] (2024/01/27 06:19 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36954

歡迎來到實力至上主義的教室 第三季 [4] (2024/01/26 06:00 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36940

歡迎來到實力至上主義的教室 第三季 [3] (2024/01/26 05:37 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36842

歡迎來到實力至上主義的教室 第三季 [2] (2024/01/26 04:45 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36841

歡迎來到實力至上主義的教室 第三季 [1] (2024/01/26 04:20 AM [週五])
https://ani.gamer.com.tw/animeVideo.php?sn=36840

BanG Dream! It's MyGO!!!!! [1] (2024/01/23 06:46 AM [週二])
https://ani.gamer.com.tw/animeVideo.php?sn=34030

MONSTERS 一百三情飛龍侍極 [1] (2024/01/22 01:07 PM [週一])
https://ani.gamer.com.tw/animeVideo.php?sn=36968

百千家的妖怪王子 [3] (2024/01/20 07:46 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36865

百千家的妖怪王子 [2] (2024/01/20 04:57 PM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=36864

名湯「異世界溫泉」開拓記~30 多歲溫泉狂熱者,轉生到悠閒的溫泉天國~ [1] (2024/01/20 01:35 AM [週六])
https://ani.gamer.com.tw/animeVideo.php?sn=37004

2024/04/18 12:54 PM [週四]
總輸出:483 筆觀看記錄

この記事が気に入ったらサポートをしてみませんか?