view cuffs-hulotte-popup.user.js @ 37:300b54b0c956

(none)
author Edho Arief <me@nanaya.pro>
date Thu, 20 Jul 2017 08:48:00 +0000
parents 11568ae07bf5
children 1e6093682591
line wrap: on
line source

// ==UserScript==
// @name         Cuffs/Hulotte popup disable
// @namespace    https://myconan.net
// @version      1.0.1
// @description  Strip out Cuffs/Hulotte age confirmation popup
// @author       nanaya
// @match        http://www.cuffs.co.jp/*
// @match        http://hulotte.jp/*
// @grant        none
// @downloadURL  https://bitbucket.org/!api/2.0/snippets/nanayapro/TK64/tip/files/cuffs-hulotte-popup.user.js
// ==/UserScript==

;(function($) {
  "use strict";
  $(function() {
    $('body > :not(#mainContent)').css({display:'none'})
  });
}).call(jQuery);