This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name keyconfig for Chrome | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @description keyconfig for google chrome | |
// @author Griever | |
// @version 1.0 | |
// ==/UserScript== | |
var func = { | |
goToParent: function(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Mouse Gestures for Chrome | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @description Mouse gestures for google chrome | |
// @author Griever | |
// @version 1.0 | |
// ==/UserScript== | |
// Original Script | |
// ==UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name goToUpperDirectory.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @version 0.0.2 | |
// ==/UserScript== | |
var upperDirectory = { | |
about : ['about:', 'about:blank', 'about:buildconfig', 'about:cache', 'about:cache?device=memory', | |
'about:cache?device=disk', 'about:config', 'about:crashes', 'about:credits', 'about:mozilla', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name NotAboutBlank.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @version 0.0.1 | |
// ==/UserScript== | |
var notAboutBlank = { | |
folderName : "", | |
// 読み込みたいフォルダ名 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name imitationLightbox | |
// @description Simple image viewer. | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @author Griever | |
// @gist https://gist.github.com/103061 | |
// @license MIT License | |
// @compatibility Firefox 4, Chrome, Opera 11.50 | |
// @include http://* | |
// @include https://* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Delayed_Document_Write_Execution.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include http://* | |
// @exclude http://*cgiboy.com/* | |
// @exclude http://mail.google.com/a/livedoor.com/* | |
// ==/UserScript== | |
(function(){ | |
var lastScriptElement = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.word { | |
display: inline-block !important; | |
width: 140px !important; | |
} | |
.submenu { | |
background-color: transparent !important; | |
border:none !important; | |
position:static !important; | |
visibility:visible !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jetpack = { | |
tabs : { | |
focused : [Browser Tab], | |
open : function open(url) { | |
var browserWindow = windows.focused; | |
return browserWindow.addTab(url); | |
}, | |
toString : function toString() { | |
return "[Tabs]"; | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
jetpack.tabs.focused.contentWindow.alert(this);//[object Sandbox] | |
for (var n in this) | |
*/ | |
{ | |
location : file:///C:/test.js, | |
console : [object Object], | |
$ : function (selector, context) { | |
return new (jQuery.fn.init)(selector, context); | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name OperaActions.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @note keyconfigなどで呼び出して使う予定 | |
// @version 10/28 fastForward の「次へ」のチェックを正規表現から前方一致に変更。 | |
// ==/UserScript== | |
// @version 10/10 wand を追加。それに伴い fastForward を強化 | |
if (typeof opera == 'undefined') var opera = { toString : function(){ return "[object OperaActions]" } }; |