Skip to content

Instantly share code, notes, and snippets.

@hirataya
Created March 3, 2013 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hirataya/5075689 to your computer and use it in GitHub Desktop.
Save hirataya/5075689 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Rakuten - Remove Ads
// @version 1.0
// @namespace http://yasu.asuka.net/
// @include http://search.rakuten.co.jp/*
// @description 楽天市場の検索画面に出る広告を削除する
// ==/UserScript==
(function() {
ads = document.getElementById("adsDisplayArea");
ads.style.display = "none";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment