Bilibili专栏点击头图获得头图

try to take over the world!

// ==UserScript==
// @name         Bilibili专栏点击头图获得头图
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Dobby233Liu
// @match        https://www.bilibili.com/read/cv*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var thing = document.querySelectorAll(".banner-img-holder")[0];
    thing.onclick = function(e){
        e.preventDefault();
        window.open(window.original.banner_url);
    }
    thing.style.cursor = "pointer";
})();