+1ボタンを消す
by
macky1207
2011-07-01 [2011/07/01 11:30:41]
なかば無理やりgoogleの+1ボタンを非表示にします。
@@ -4,11 +4,10 @@
* @include http://www.google.co.jp/search*
* @include http://www.google.com/search*
* @license MIT License
- * @require jQuery
*/
-jQuery(function($){
-if(document.domain.match(/google\.com|google\.co\.jp/)){
- $('button.esw.eswd').remove();
-}
-});
-
+(function(d){
+ if(d.match(/google\.com|google\.co\.jp/)){
+ var stylesheet = document.styleSheets.item(0);
+ stylesheet.insertRule("button.esw.eswd{ display:none; }", stylesheet.cssRules.length);
+ }
+})(document.domain);
/*
* @title +1ボタンを-する
* @description +1ボタンを消します。
* @include http://www.google.co.jp/search*
* @include http://www.google.com/search*
* @license MIT License
*/
(function(d){
if(d.match(/google\.com|google\.co\.jp/)){
var stylesheet = document.styleSheets.item(0);
stylesheet.insertRule("button.esw.eswd{ display:none; }", stylesheet.cssRules.length);
}
})(document.domain);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。