SPOTで表示を軽く?する

// ==UserScript==
// @name         spot_light_load
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://travel.spot-app.jp/*
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==
$(".item_description>p").contents().filter(function () {
    return this.nodeType === 3;
  }).wrap("<a class='title_link'></a>");
var result = document.evaluate('//h3[@class="item_title"]/a', document, null, 7, null);
var result2 = document.evaluate('//a[@class="title_link"]', document, null, 7, null);
for (var i = 0; i < result.snapshotLength; i++) {
    result2.snapshotItem(i).href=result.snapshotItem(i).href;
}

var listArray = document.querySelectorAll('.entry_main *[style]');
for (var j = 0; j < listArray.length; j++) {
  listArray[j].removeAttribute("style");
}
.item_title a{pointer-events:none;}
.autopagerize_page_separator~.content_item .item_title a{pointer-events:auto;}