巴哈姆特動漫電玩通解答顯示小工具

在巴哈姆特哈拉區右側的動漫電玩通顯示答案

As of 2018-03-19. See the latest version.

// ==UserScript==
// @name         巴哈姆特動漫電玩通解答顯示小工具
// @namespace    https://blog.maple3142.net/
// @version      0.1
// @description  在巴哈姆特哈拉區右側的動漫電玩通顯示答案
// @author       You
// @match        https://forum.gamer.com.tw/B.php?bsn=*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const $ansbox=jQuery('.BH-rbox.BH-qabox1')
    const sn=$ansbox.data('quiz-sn')
    function getCSRF(){
        return jQuery.ajax({
            url: '/ajax/getCSRFToken.php',
            cache: !1
        })
    }
    function answer(n){
        return getCSRF().then(token=>jQuery.get('/ajax/quiz_answer.php',{sn,o:n,token}).then(html=>{
            return html.includes('答對了')
        }))
    }
    function getAnswer(){
        return Promise.all([1,2,3,4].map(answer)).then(r=>r.indexOf(true)+1)
    }
    getAnswer().then(x=>$ansbox.find('li')[x-1]).then(el=>$(el).css('font-size','120%').css('color','red'))
})();