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 NoScriptModoki.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @version 0.02 | |
// ==/UserScript== | |
if (NSModoki){ | |
NSModoki._menu = [ | |
{ | |
id : '[nsm_script]', |
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 PopupBookmarkToolbar.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @version 0.0.3 | |
// ==/UserScript== | |
(function(){ | |
var mode = 'icons'; // 'icons', 'text' or 'full' | |
var size = 'small'; // 'small' or 'large' | |
// array of toolbar item id, 'separator', 'spring' and 'spacer'. |
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 OperaStyle.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @description Shift+Enter でリンク等を新しいタブを開く | |
// @include main | |
// @include chrome://browser/content/bookmarks/bookmarksPanel.xul | |
// @include chrome://browser/content/history/history-panel.xul | |
// @conpatibility Firefox 25 | |
// @version 0.0.5 | |
// ==/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 OperaStyle_gotoNickname.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @varsion 0.0.3 | |
// @note keyconfig等で gotoNickname.open() を実行 | |
// @note gotoNickname.open("google"); でも可能。 | |
// ==/UserScript== | |
window.gotoNickname= { |
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 StatusbarInURLBar3.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// @compatibility Firefox 4.0b7 | |
// @note Firefox 3.6, 4.0b6 はこちら https://gist.github.com/67460/d87a8f38280d26f1ccb81fcbb1c3b6a1fcb07e90 | |
// ==/UserScript== | |
(function(){ | |
if (!isElementVisible(gURLBar)) return;//アドレスバーが無かったらストップ |
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 ScrollFunctions.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// ==/UserScript== | |
/* | |
引数で指定したピクセルだけウインドウをスクロールする。 | |
キャレットブラウズモードの時はスクロール量が1行に固定される | |
keyconfig 等で pixelScroll.up(200); を実行する |
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
javascript: | |
if (window.hah){ | |
hah.removeHints(); | |
} | |
window.hah = { | |
hintKeys : new String('asdfghjkl'), | |
selector: 'a[href]:not([href^="mailto:"]), input:not([type="hidden"]), textarea, select, img[onclick], button', | |
xpath: '//a[@href]|//input[not(@type=\x22hidden\x22)]|//textarea|//select|//img[@onclick]|//button', | |
xpathMode : true, | |
hintColorLink : '\x23FFFF00', |
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 ChromeStyle_Statusbar.uc.js | |
// @namespace http://d.hatena.ne.jp/Griever/ | |
// @include main | |
// ==/UserScript== | |
gBrowser.addEventListener("TabSelect", function(event){ | |
var statusbar = document.getElementById("status-bar"); | |
statusbar.hidden = true; | |
setTimeout(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
javascript:({ | |
init: function() { | |
this.box = document.createElement("div"); | |
this.box.id = "snap-links-box"; | |
this.bs = this.box.style; | |
this.bs.backgroundColor = "rgba(0,128,255,.1)"; | |
this.bs.border = "1px solid rgb(255,255,0)"; | |
this.bs.WebkitBoxSizing = | |
this.bs.OBoxSizing = | |
this.bs.MozBoxSizing = |
OlderNewer