memo.xight.org

日々のメモ

カテゴリ : Firefox

2ページ目 / 全5ページ

Mouseover Dictionary - 英辞郎の辞書データをマウスオーバー検索できるFirefox拡張

Summary

Firefox2以降対応.

Reference

maruの研究記録 - Mouseover Dictionary
http://ichiro.maruta.googlepages.com/mouseoverdictionary

PDIC Homepage
http://homepage3.nifty.com/TaN/

via

窓の杜 - “英辞郎”の辞書データをマウスオーバー検索できる「Firefox」v2専用拡張機能
http://www.forest.impress.co.jp/article/2006/10/26/mouseoverdictionary.html

Greased Lightbox - lightboxで画像表示するGreasemonkey Script

Summary

前の画像
次の画像
画像を拡大 +
画像を縮小 -
元に戻る ESC ,画像以外の部分をクリック

Reference

Greased Lightbox - shifting pixel
http://shiftingpixel.com/lightbox

GreasedLightbox.user.js
http://shiftingpixel.com/downloads/greasedlightbox.user.js

via

Going My Way: サムネイルをクリックするとlightbox効果で画像を表示してくれるGreased Lightbox
http://kengo.preston-net.com/archives/002867.shtml

fav.icio.us2を改造して,様々なリンクにfaviconを表示するGreasemonkey Script

Summary

fav.icio.us2 を改造して,Google, はてなのリンクにfaviconを表示.

faviconが無いサイトではデフォルトのアイコンを表示するようにした,
改良版も公開されている.

Reference

Userscripts.org - fav.icio.us2
http://userscripts.org/scripts/show/3406

色んなところにfaviconを - cameraLady
http://june29.jp/2006/10/18/favicon-greasemonkey/

Favicon with Google (greasemonkey)
http://june29.is.land.to/favoogle.user.js

Favicon with Hatena Bookmark (greasemonkey)
http://june29.is.land.to/favib.user.js

ドレッシングのような - 『 色んなところにfaviconを - cameraLady』の改良
http://d.hatena.ne.jp/mrkn/20061021/1161417780

Favicon with Google 改良版 (greasemonkey)
http://blog54.fc2.com/m/mrkn/file/gfavicon.user.js

Favicon with Hatena Bookmark 改良版 (greasemonkey)
http://blog54.fc2.com/m/mrkn/file/hfavicon.user.js

via

Going My Way: Googleの検索結果やはてなブックマークにfaviconを表示するGreasemonkeyユーザースクリプト
http://kengo.preston-net.com/archives/002866.shtml

WebデザイナーのためのFirefoxエクステンション20個

Reference

CyberKnowledge Blog - 2006-10-05 - 20 FireFox Extensions That Every Web Designer Should Know About
http://cyber-knowledge.net/blog/2006/10/05/20-firefox-extensions-that-every-web-designer-should-know-about/

via

phpspot開発日誌 - 2006-10-09 - WebデザイナーのためのFirefoxエクステンション20個
http://phpspot.org/blog/archives/2006/10/webfirefox20.html

userContent.css で Google Calendar で土日の背景色を変更する

Summary (月曜始まり)

@-moz-document url-prefix("https://www.google.com/calendar/") {
	/* Google Calendar Color Monday */
	
	.st-dtitle:nth-last-child(2),
	.tg-weekend:nth-last-child(2),
	#weekViewAllDayBgwk .st-bg:nth-last-child(2) {
		background-color: #D8E2F2 !important;
		color: #6A6AFF !important;
	}
	
	.st-bg-table .st-bg:nth-last-child(2),
	.tg-weekend:nth-last-child(2),
	#weekViewAllDayBgwk .st-bg:nth-last-child(2) {
		background-color: #F0F3FC !important;
	}
	
	.st-dtitle:last-child,
	.tg-weekend:last-child,
	#weekViewAllDayBgwk .st-bg:last-child {
		background-color: #F6E4E4 !important;
		color: #FF6A6B !important;
	}
	
	.st-bg-table .st-bg:last-child,
	.tg-weekend:last-child,
	#weekViewAllDayBgwk .st-bg:last-child {
		background-color: #FFF0EE !important;
	}
	
	.dp-dayh:nth-last-child(2),
	.dp-weekend:nth-last-child(2),
	.dp-weekend-selected:nth-last-child(2) {
		color: #22F !important;
	}
	
	.dp-weekend:nth-last-child(2).dp-offmonth,
	.dp-weekend-selected:nth-last-child(2).dp-offmonth {
		color: #88F !important;
	}
	
	.dp-dayh:last-child,
	.dp-weekend:last-child,
	.dp-weekend-selected:last-child {
		color: #E22 !important;
	}
	
	.dp-weekend:last-child.dp-offmonth,
	.dp-weekend-selected:last-child.dp-offmonth {
		color: #E88 !important;
	}
}


Obsolete

@-moz-document url-prefix("http://www.google.com/calendar/"), 
               url-prefix("https://www.google.com/calendar/") {
    #dh5,#dh12,#dh19,#dh26,#dh33,#dh40,#dh47,#dh54 {
        color: #00F;
        background-color: #CCF;
        display: block;
        padding: 0 0.4em 2px 0;
        margin-bottom: -2em;
    }
    .dayNotInMonth > #dh5, .dayNotInMonth > #dh12,
    .dayNotInMonth > #dh19, .dayNotInMonth > #dh26,
    .dayNotInMonth > #dh33, .dayNotInMonth > #dh40,
    .dayNotInMonth > #dh47, .dayNotInMonth > #dh54 {
        color: #88F;
        background-color: #DDF;
    }
    #dh6,#dh13,#dh20,#dh27,#dh34,#dh41,#dh48,#dh55 {
        color: #F00;
        background-color: #FCC;
        display: block;
        padding: 0 0.4em 2px 0;
        margin-bottom: -2em;
    }
    .dayNotInMonth > #dh6, .dayNotInMonth > #dh13,
    .dayNotInMonth > #dh20, .dayNotInMonth > #dh27,
    .dayNotInMonth > #dh34, .dayNotInMonth > #dh41,
    .dayNotInMonth > #dh48, .dayNotInMonth > #dh55 {
        color: #F88;
        background-color: #FDD;
    }

}


マス目とIDの関係

#dh0 #dh1 #dh2 #dh3 #dh4 #dh5 #dh6
#dh7 #dh8 #dh9 #dh10 #dh11 #dh12 #dh13
#dh14 #dh15 #dh16 #dh17 #dh18 #dh19 #dh20
#dh21 #dh22 #dh23 #dh24 #dh25 #dh26 #dh27
#dh28 #dh29 #dh30 #dh31 #dh32 #dh33 #dh34
#dh35 #dh36 #dh37 #dh38 #dh39 #dh40 #dh41

Reference

userstyles.org - Google Calendar - colorize Sat/Sun (start on Mon)
http://userstyles.org/style/show/1101

Marginal Leaves - 2006-10-05 - Googleカレンダーの土・日の日付の背景色を変更してみました
http://d.hatena.ne.jp/margin/20061005/1160031325

Marginal Leaves - 2006-10-06 - Googleカレンダーの土日の色 その2
http://d.hatena.ne.jp/margin/20061006/1160136096

鷹の島 - 2006-10-05 - Googleカレンダーの土・日の文字色を変更しました
http://espion.just-size.jp/archives/06/278124742.html

鷹の島 - 2006-10-06 - Google カレンダーの土日の背景色を変更するワザ - パート2
http://espion.just-size.jp/archives/06/279163958.html

風待ち日記 - Googleカレンダーの土・日の文字色を変更する方法
http://d.hatena.ne.jp/saito-kazuo/20061004/p1

日曜始まり版

Going My Way: Google Calendarの土日の色を変更して見やすくする方法
http://kengo.preston-net.com/archives/002841.shtml

qptaroのメモ - Googleカレンダーの土・日の日付の背景色を変更
http://d.hatena.ne.jp/qptaro/20061005/1160056944

[2012-02-20] 追記

Google カレンダー の土日に色をつける方法 | SUEKICHI.org
http://www.suekichi.org/blog/2010/04/google-calendar-color/

Stylish - userContent.css の編集が行なえる Firefox拡張

Summary

userContent.css の編集,管理が楽になる Firefox拡張.

userstyles.org に数多く登録されている,userContent.css を簡単にインストール可能.
Stylish をインストールすると,userstyles.org に Install ボタンが出現する.

Add Bookmark Dialog: Show Folder Tree

ブックマーク時のダイアログボックスを大きく,使いやすくしてくれる.

WellRounded

アドレスバーと検索バーの角を丸くする.

Icons identifiers of links

ハイパーリンクのテキストにアイコンを付加する.

Reference

Stylish :: Mozilla Add-ons :: Add Features to Mozilla Software
https://addons.mozilla.org/firefox/2108/

userstyles.org - Add Bookmark Dialog: Show Folder Tree
http://userstyles.org/style/show/995

userstyles.org - WellRounded
http://userstyles.org/style/show/665

userstyles.org - Link: Icons identifiers of links.
http://userstyles.org/style/show/504

via

hail2u.net - Weblog - FirefoxのuserContent.cssネタ #3
http://hail2u.net/blog/software/firefox-usercontent-css-tricks-3.html

MozRepl - Firefoxにtelnet接続が行なえるFirefox拡張

Reference

MozLab - Trac
http://dev.hyperstruct.net/trac/mozlab

最速インターフェース研究会 :: Firefoxの拡張MozLabの中に含まれるMozReplがヤバすぎる件について
http://la.ma.la/blog/diary_200609280045.htm

blog.nomadscafe.jp - Plagger::Plugin::Notify::Browser
http://blog.nomadscafe.jp/archives/000627.html

via

www.textfile.org - MozRepl: Firefoxにtelnet接続してブラウザを制御
http://d.hatena.ne.jp/textfile/20060928/mozrepl

TouchUpWeb - Internet Explorer用Webページを表示できるようにするFirefox拡張

Summary

Greasemonkeyを利用して,Internet Explorer独自拡張タグ,
CSS,JavaScriptの挙動をInternet Explorerと同様に合わせるサービス.

独立行政法人情報処理推進機構(IPA)の「2005年度下期オープンソースソフトウェア活用基盤整備事業」の一環として実施された
「Webコンテンツの相互運用性を改善するフィルタリングサーバの開発」プロジェクトにおいて,
Mozilla Japan,アルゴ21,三菱総合研究所の3社が共同で開発したソフトウェア.

ライセンスはMPL(Mozilla Public License).

Reference

TouchUpWeb プロジェクト - A Better Web for Everyone.
http://www.touchupweb.org/ja/

Bugzilla for TouchUpWeb プロジェクト メインページ
http://bugzilla.touchupweb.org/

Mozilla Add-ons - Greasemonkey
https://addons.mozilla.org/firefox/748/

SourceForge.net: TouchUpWeb
https://sourceforge.net/projects/touchupweb/

via

ITmedia エンタープライズ:もう崩れない、Webブラウザによる表示の違いを吸収するサービスが開始
http://www.itmedia.co.jp/enterprise/articles/0609/11/news051.html

ErrorZilla - エラー画面を便利にするFirefox拡張

Summary

エラー画面に「再試行」ボタンの他,
「Google Cache」「Wayback」「Ping」「Trace」「Whois」ボタンを追加.

Reference

roachfiend.com - ErrorZilla - Useful error pages for Firefox
http://roachfiend.com/archives/2006/08/28/errorzilla-useful-error-pages-for-firefox/

via

sta la sta - Firefoxのエラー画面をより便利に - ErrorZilla
http://d.hatena.ne.jp/starocker/20060906/p1

Japanize - ウェブサイトのUIを自動的に日本語化するFirefox拡張

Reference

ネットを日本語化する:Japanize
http://japanize.31tools.com/

Kazuho@Cybozu Labs: ウェブサイトの UI を自動的に日本語化するサービス
http://labs.cybozu.co.jp/blog/kazuho/archives/2006/08/japanize.php

Reference 追記

窓の杜 - 2006-08-24 - 海外サイトのナビゲーションメニューを日本語化するFirefox拡張「Japanize」
http://www.forest.impress.co.jp/article/2006/08/24/japanize.html

Firefox v2.0 Beta 1 日本語版

Reference

Mozilla Developer News - Blog Archive - Firefox 2 Beta 1 milestone released
http://developer.mozilla.org/devnews/index.php/2006/07/12/firefox-2-beta-1-milestone-released/

Firefox Help: プロファイルの管理
http://www.mozilla-japan.org/support/firefox/profile

via

窓の杜 - 【NEWS】「Firefox」v2.0のBeta 1 日本語版が公開、タブの使い勝手が大幅に向上
http://www.forest.impress.co.jp/article/2006/07/13/firefox2beta1.html