JavaScript

Googleのトップにリンク追加するGreasemonkeyスクリプト

前に書いてたのを久しぶりに修正した。var listのnameとurlにタイトルとurlを指定して使う。 // ==UserScript== // @name menu // @namespace f96q // @include http://www.google.co.jp/ // ==/UserScript== var list = [ {name: 'Backpack', url: 'http://…

livedoorReaderを広くして使う

Chromeで使うのに修正した。 function fullWindow() { var style = document.createElement('style') style.type = 'text/css'; style.innerHTML = '#header, #menu, #control, #ads_bottom {display: none;}'; document.body.appendChild(style); } functio…