memo.xight.org

日々のメモ

カテゴリ : Firefox

5ページ目 / 全5ページ

Firefoxの検索エンジンリストに xight.org の clsearch.cgi を追加する

Summary

C:\Program Files\Mozilla Firefox\searchplugins\xight.src
を作成

# Mozilla search plugin for xight.org
# by Yoshiki SATO <xight.org+memo@gmail.com>.
# http://xight.org/chalow-searchplugin/
# This file is released into the public domain.
#
# Version: 0.0.1 (2005-09-16)
# Country: JP
# Language: ja

<search
	version="0.0.1"
	name="xight.org"
	description="xight.org"
	sourceTextEncoding="0"
	method="GET"
	action="http://memo.xight.org/clsearch.cgi"
	queryCharset="EUC-JP"
	searchForm="http://memo.xight.org/"
>

<input name="key" user>
<input name="mode" value="1">

<interpret
	browserResultType="result"
	charset="EUC-JP"
	language="ja"
	resultListStart="<div id='results'></div>"
	resultListEnd="<hr/>"
	resultItemStart="<li style='padding-bottom: 1em'>"
	resultItemEnd="</li>"
>

</search>

<browser
	alsomatch="http://memo.xight.org/clsearch.cgi"
	update="http://memo.xight.org/xight.src"
	updateIcon="http://memo.xight.org/xight.png"
	updateCheckDays="100"
>

All-in-One Gestures - Firefox でマウスジェスチャー

追記 [2006-08-07]

ジェスチャー一覧を表示する
chrome://allinonegest/content/aiogest.html

Reference

Mozilla Firebird Extensions - All-in-One Gestures
http://perso.wanadoo.fr/marc.boullet/

via

窓の杜 - 2004-11-22 - 「Firefox」にマウスジェスチャー機能を追加できる「All-in-One gestures」
http://www.forest.impress.co.jp/article/2004/11/22/allinonegestures.html

Going My Way - 2004-04-20 - Firefoxで使うAll-in-One Gestures
http://kengo.preston-net.com/archives/001285.shtml

Greasemonkey - Firefoxでユーザーサイドスクリプトを実現するためのエクステンション

Summary

Firefoxでユーザーサイドスクリプトを実現するためのエクステンション
Amazon - Greasemonkey Hacks (Hacks): 洋書

Reference

Greasemonkey Hacks (Hacks): 洋書
Firefox まとめサイト - Greasemonkey
http://firefox.geckodev.org/?Greasemonkey
Dive Into Greasemonkey
http://diveintogreasemonkey.org/
はてなダイアリー - Greasemonkeyとは
http://d.hatena.ne.jp/keyword/Greasemonkey
はてなグリースモンキー(Greasemonkey)
http://www.hatena.ne.jp/tool/greasemonkey

VI-bindings in Mozilla Firefox

Firefox\res\builing\userHTMLBindings.xml (Johan Fredin - VI-bindings in Mozilla Firefox より)

<?xml version="1.0"?>
<!-- In order to work correctly, this file must be named -->
<!-- res/builtin/userHTMLBindings.xml in the mozilla tree. -->

<bindings id="htmlBindings"
	xmlns="http://www.mozilla.org/xbl"
	xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
	
	<binding id="browserUser">
		<handlers>
			<handler event="keypress" key="k" command="cmd_scrollLineUp"/>
			<handler event="keypress" key="j" command="cmd_scrollLineDown"/>
			<handler event="keypress" key="l" command="cmd_scrollRight"/>
			<handler event="keypress" key="h" command="cmd_scrollLeft"/>
		</handlers>
	</binding>
	
</bindings>


user.js (Johan Fredin - VI-bindings in Mozilla Firefox より)

// Find As You Type Configuration:
// Set this pref to false to disable Find As You Type:
user_pref("accessibility.typeaheadfind", true);
// If you set this pret to true, typing can automatically start Find As You Type.
// If false (default), you must hit / (find text) or ' (find links) before your search.
user_pref("accessibility.typeaheadfind.autostart", false);
// Set this pref to false if you want Find As You Type to search normal text too:
user_pref("accessibility.typeaheadfind.linksonly", false);
// Set this pref to true if you require that the link starts with the entered text:
user_pref("accessibility.typeaheadfind.startlinksonly", false);
// This is the time in milliseconds for the Find As You Type to stop watching for keystrokes:
user_pref("accessibility.typeaheadfind.timeout", 3000);


Reference

  Johan Fredin - VI-bindings in Mozilla Firefox (formerly Firebird)
  http://legonet.org/~griffin/firefox_vi-bindings.html

via

  TokuLog! - 2005-02-08
  http://tokuhirom.dnsalias.org/~tokuhirom/cl/2005-02-08-1.html