HoodHider

Hide hood overlays on click-that-hood.com so that you can't see the hood names before clicking.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         HoodHider
// @namespace    http://click-that-hood.com/
// @version      0.1
// @description  Hide hood overlays on click-that-hood.com so that you can't see the hood names before clicking.
// @author       Christian Huber
// @match        http://click-that-hood.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelector('#neighborhood-hover').style="display: none; visibility: hidden";
})();