+1ボタンを消す
by
macky1207
2011-07-01 [2011/07/01 11:30:41]
なかば無理やりgoogleの+1ボタンを非表示にします。
@@ -1,14 +1,16 @@
/*
* @title +1ボタンを消す
- * @description googleの+1ボタンを非表示にします。
+ * @description なかば無理やりgoogleの+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 !important; }", stylesheet.cssRules.length);
setInterval(function(){
- var stylesheet = document.styleSheets.item(0);
+ stylesheet = document.styleSheets.item(0);
stylesheet.insertRule("button.esw.eswd{ display:none !important; }", stylesheet.cssRules.length);
},1000);
}
/*
* @title +1ボタンを消す
* @description なかば無理やりgoogleの+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 !important; }", stylesheet.cssRules.length);
setInterval(function(){
stylesheet = document.styleSheets.item(0);
stylesheet.insertRule("button.esw.eswd{ display:none !important; }", stylesheet.cssRules.length);
},1000);
}
})(document.domain);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。