Google Chromeを試してみませんか?ダウンロードはこちらから。
*テーマの作り方 [#a328b616]
Google Chrome のテーマ / スキンを作ってみよう!
#contents

*バージョン3.0以降 [#bca8ecd6]
テーマは特殊なChrome拡張として作成します。詳しくは[[Developer's Guide>http://code.google.com/chrome/extensions/themes.html]]を参照。
-[[Theme Creation Guide>http://code.google.com/p/chromium/wiki/ThemeCreationGuide]](code.google.com) - 英語ですが各要素の解説と記述方法がまとめられています。
-[[Chrome crx Theme Creator>http://chrometheme.chromepub.com/crxtheme]](chrometheme.chromepub.com) - テーマ作成支援ツール。テーマ名と各要素の色・PNG画像ファイルを指定するだけでテーマを作成できます。

**作成例 [#o9dbcb47]
例としてGoogle Chrome 3.0から5.0までのデフォルトテーマ(ツールバーが水色)と同じテーマを作成してみます。
※現在の安定版(バージョン5.0)にインストールしても見た目は変わりません。開発版(6.0以降)向けです。

現在のGoogle Chrome開発版では、デフォルトテーマが変更されてツールバーが灰色に、フレームが濃い青色に変更されています。
この変更は、Chromium(Google Chromeの先行開発版)のRevision 44116で行われました。
http://src.chromium.org/viewvc/chrome?view=rev&revision=44116
具体的には以下の変更が行われています。
 画像の差替え
  ・通常ウィンドウのフレーム画像 frame_default.png
  ・非アクティブ時の通常ウィンドウのフレーム画像 theme_frame_default_inactive.png
  ・ツールバー画像 theme_toolbar_default.png
 フレームの色指定の変更
  ・通常ウィンドウのフレーム色(frame、ソース上の表記はkDefaultColorFrame):RGB(77, 139, 217) → RGB(66, 116, 201)
  ・非アクティブ時の通常ウィンドウのフレーム色(frame_inactive、ソース上の表記はkDefaultColorFrameInactive):RGB(152, 188, 233) → RGB(161, 182, 228)
  ・ツールバー色(toolbar、ソース上の表記はkDefaultColorToolbar):RGB(210, 225, 246) → RGB(214, 214, 214)
  ※ここでの「フレーム色」とは画像でカバーされないウィンドウ左/右/下のフレーム部分の色です。
   「ツールバー色」とはファイルをダウンロードしたときに現れるダウンロードバーなどの部分の色です。
これらの変更前のデータを元にテーマを作成してみます。
***手順1. 画像を用意する [#lc260ebb]
このテーマでは以下の7個の画像ファイルを使用します。
+通常ウィンドウのフレーム画像
Chromiumのリポジトリにある以下の変更前の画像をそのまま使います。
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/theme/theme_frame_default.png?revision=44115
#ref(theme_frame_default.png,nolink,)
+非アクティブ時の通常ウィンドウのフレーム画像
以下の変更前の画像をそのまま使います。
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/theme/theme_frame_default_inactive.png?revision=44115
#ref(theme_frame_default_inactive.png,nolink,)
+シークレットウィンドウのフレーム画像
この画像はリポジトリ上に存在しません。
テーマ側で指定しない場合は、通常ウィンドウのフレーム画像の色調を自動的に変更したものが使用されます。
今回は色調の自動変更では期待した色にならなかったので、Chrome 5.0のスクリーンショットを加工して新規に作成しました。
#ref(theme_frame_incognito.png,nolink,)
+非アクティブ時のシークレットウィンドウのフレーム画像
この画像はリポジトリ上に存在しません。
テーマ側で指定しない場合は、非アクティブ時の通常ウィンドウのフレーム画像の色調を自動的に変更したものが使用されます。
これもChrome 5.0のスクリーンショットから新規に作成しました。
#ref(theme_frame_incognito_inactive.png,nolink,)
+通常ウィンドウ上のバックグラウンドのタブ画像
この画像はリポジトリ上に存在しません。
テーマ側で指定しない場合は、ツールバー画像の色調を自動的に変更したものが使用されます。
これもChrome 5.0のスクリーンショットから新規に作成しました。
#ref(theme_tab_background.png,nolink,)
+シークレットウィンドウ上のバックグラウンドのタブ画像
この画像はリポジトリ上に存在しません。
テーマ側で指定しない場合は、ツールバー画像の色調を自動的に変更したものが使用されます。
これもChrome 5.0のスクリーンショットから新規に作成しました。
#ref(theme_tab_background_incognito.png,nolink,)
+ツールバー画像
以下の変更前の画像をそのまま使います。
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/theme/theme_toolbar_default.png?revision=44115
#ref(theme_toolbar_default.png,nolink,)
***手順2. manifest.jsonファイルを作成する [#q2449156]
文字コードはUTF-8を指定します。
このファイルにテーマの名前や、使用する画像・色などを記述します。
+"version" セクション
テーマのバージョンを記述します。今回は 1.0.0.0 とします。
 "version": "1.0.0.0",
+"name" セクション
テーマの名前を記述します。これはテーマのインストール直後に表示される情報バーに表示されます。
また、[[Google Chrome 拡張機能>https://chrome.google.com/extensions?hl=ja]](chrome.google.com)のページにアップロードしたときはこの名前が表示されます。
 "name": "Chrome 3-4-5 Default Theme",
+"theme" セクション
このセクションのサブセクションで画像、色、色調変換、プロパティ(画像の配置の方法など)を記述します。
++"images" サブセクション
以下のように画像を指定します。
今回は"images" というフォルダを作ってその中に各画像ファイルを置くため、右側のファイル名の前に「images/」を追加して記述しています。
 "theme_frame":                    "images/theme_frame_default.png",              // 通常ウィンドウのフレーム画像指定
 "theme_frame_inactive":           "images/theme_frame_default_inactive.png",     // 非アクティブ時の通常ウィンドウのフレーム画像指定
 "theme_frame_incognito":          "images/theme_frame_incognito.png",            // シークレットウィンドウのフレーム画像指定
 "theme_frame_incognito_inactive": "images/theme_frame_incognito_inactive.png",   // 非アクティブ時のシークレットウィンドウのフレーム画像指定
 "theme_tab_background":           "images/theme_tab_background.png",             // 通常ウィンドウ上のバックグラウンドのタブ画像指定
 "theme_tab_background_incognito": "images/theme_tab_background_incognito.png",   // シークレットウィンドウ上のバックグラウンドのタブ画像指定
 "theme_toolbar":                  "images/theme_toolbar_default.png"             // ツールバー画像指定
++"colors" サブセクション
Chrome 5.0の場合の各部分のデフォルトの色指定は、以下のソースファイルで調べることができます。
http://src.chromium.org/viewvc/chrome/branches/375/src/chrome/browser/browser_theme_provider.cc
このファイルから以下の部分のデフォルトの色指定を探し出します。
 ・シークレットウィンドウのフレーム色(frame_incognito、ソース上の表記はkDefaultColorFrameIncognito)
  → RGB(83, 106, 139)
 ・非アクティブ時のシークレットウィンドウのフレーム色(frame_incognito_inactive、ソース上の表記はkDefaultColorFrameIncognitoInactive)
  → RGB(126, 139, 156)
これらとRevision 44116での変更前の値を以下のように記述します。
 "frame":                    [  77, 139, 217 ],   // 通常ウィンドウのフレームの色指定
 "frame_inactive":           [ 152, 188, 233 ],   // 非アクティブ時の通常ウィンドウのフレームの色指定
 "frame_incognito":          [  83, 106, 139 ],   // シークレットウィンドウのフレームの色指定
 "frame_incognito_inactive": [ 126, 139, 156 ],   // 非アクティブ時のシークレットウィンドウのフレームの色指定
 "toolbar" :                 [ 210, 225, 246 ]    // ツールバーの色指定
++"tints" サブセクション
今回は用意した画像を自動色調変換させずにそのまま使うので、すべての要素に [ -1.0, -1.0, -1.0 ] を記述します。
 "frame":                    [ -1.0, -1.0, -1.0 ],   // 通常ウィンドウのフレーム画像の色調変換指定
 "frame_inactive":           [ -1.0, -1.0, -1.0 ],   // 非アクティブ時の通常ウィンドウのフレーム画像の色調変換指定
 "frame_incognito":          [ -1.0, -1.0, -1.0 ],   // シークレットウィンドウのフレーム画像の色調変換指定
 "frame_incognito_inactive": [ -1.0, -1.0, -1.0 ],   // 非アクティブ時のシークレットウィンドウのフレーム画像の色調変換指定
 "background_tab":           [ -1.0, -1.0, -1.0 ]    // バックグラウンドのタブ画像の色調変換指定
++"properties" サブセクション
今回は「新しいタブ」の背景画像やロゴ画像は使わないので、何も記述しません。

最終的な manifest.json の中身は以下のようになります。
 {
   "version": "1.0.0.0",
   "name": "Chrome 3-4-5 Default Theme",
   "theme": {
     "images" : {
       "theme_frame":                    "images/theme_frame_default.png",
       "theme_frame_inactive":           "images/theme_frame_default_inactive.png",
       "theme_frame_incognito":          "images/theme_frame_incognito.png",
       "theme_frame_incognito_inactive": "images/theme_frame_incognito_inactive.png",
       "theme_tab_background":           "images/theme_tab_background.png",
       "theme_tab_background_incognito": "images/theme_tab_background_incognito.png",
       "theme_toolbar":                  "images/theme_toolbar_default.png"
     },
     "colors" : {
       "frame":                    [  77, 139, 217 ],
       "frame_inactive":           [ 152, 188, 233 ],
       "frame_incognito":          [  83, 106, 139 ],
       "frame_incognito_inactive": [ 126, 139, 156 ],
       "toolbar" :                 [ 210, 225, 246 ]
     },
     "tints" : {
       "frame":                    [ -1.0, -1.0, -1.0 ],
       "frame_inactive":           [ -1.0, -1.0, -1.0 ],
       "frame_incognito":          [ -1.0, -1.0, -1.0 ],
       "frame_incognito_inactive": [ -1.0, -1.0, -1.0 ],
       "background_tab":           [ -1.0, -1.0, -1.0 ]
     },
     "properties" : {
     }
   }
 }
各セクション内の最後の項目(12,19,26,29-31行目)の行末には「,」を書かないというルールがあることに注意してください。
また、画像ファイル名および拡張子の大文字・小文字を間違えないようにしてください。パッケージ化に成功してもインストールできない場合があります。
***手順3. テーマ構成ファイルを crx ファイルにパッケージ化する [#abc0b9e0]
+Cドライブの直下に "ChromeTheme" というフォルダを作成します。
+"ChromeTheme" フォルダの中に "Chrome 3-4-5 Default Theme" というフォルダを作成します。(このフォルダ名が作成される crx ファイルの名前になります)
+"Chrome 3-4-5 Default Theme" フォルダの中に手順2.で用意した manifest.json を置きます。
+"Chrome 3-4-5 Default Theme" フォルダの中に "images" というフォルダを作成します。
+"images" フォルダの中に手順1.で用意した画像ファイルを置きます。
+Google Chromeを起動して「拡張機能」のページ(chrome://extensions/)を開き、ページ右上の「デベロッパー モード」をクリックして隠しボタンを表示させます。
+[拡張機能のパッケージ化] ボタンをクリックし、[拡張機能のルート ディレクトリ] 欄に "C:\ChromeTheme\Chrome 3-4-5 Default Theme" を指定します。
+[OK] ボタンをクリックします。「次のファイルを作成しました」と表示されたら [OK] をクリックして閉じます。
+ページ右上の「デベロッパー モード」をクリックして隠しボタンを非表示に戻します。

C:\ChromeTheme に テーマファイル "Chrome 3-4-5 Default Theme.crx" と鍵ファイル "Chrome 3-4-5 Default Theme.pem" が作成されます。
※鍵ファイルはバージョンアップ版を同じIDでパッケージ化したい場合に使用します。通常は使用する必要はありません。
**作成したテーマファイルのインストール [#be2b8081]
+crx ファイルをGoogle Chromeのウィンドウにドラッグ&ドロップします。
+ウィンドウ下部にダウンロードバーが現れ、ダウンロードの確認メッセージが表示されるので [続行] をクリックします。

**ヒント [#h5e8cfd4]
crxファイルは[[7-Zip>http://sevenzip.sourceforge.jp/]]や[[WinRAR>http://www.diana.dti.ne.jp/~winrar/]]などの圧縮・解凍ソフトを使って解凍できます。
テーマの配布ページのインストールリンクを右クリックして「名前を付けてリンク先を保存」を選択し、ファイルとして保存してから上記ソフトで展開して中身を見てみると参考になるかもしれません。

*バージョン2.0以前 [#fe383921]
テーマの切り替え機能が正式にサポートされていなかったので、リソースDLLを差し替える必要がありました。
※バージョン4.0以降ではテーマのリソースDLLを使用しないように仕様変更されたので、この方法は適用できません。

**必要なもの [#if2f0b57]
- ''リソースコンパイラ (rc.exe)''
Visual C++ がインストールしてあれば入っているハズ。わざわざインストールしたくない、という人は[[コレ>http://www.microsoft.com/downloads/details.aspx?FamilyID=53f9cbb4-b4af-4cf2-bfe5-260cfb90f7c3&DisplayLang=en]]が使えるかも。(未確認)
- ''Resouce Hacker (ResHacker.exe)''
リソース DLL の書き換えに必要です。DLL をビルドするより楽です。[[ココ>http://angusj.com/resourcehacker/]]からダウンロード。
- ''TortoiseSVN''
レポジトリからチェックアウトする用事があるので。他にアテのある方は他の SVN クライアントでも OK です。[[ココ>http://tortoisesvn.net/]]からダウンロード。

**手順 [#e0276d55]
+ ''作業用フォルダを作る''
まずは適当にフォルダを作っておきます。
 C:\Documents and Settings\[ユーザー名]\Local Settings\Application Data\Google\Chrome\Application\0.2.149.27\Themes\default.dll
がテーマのリソース DLL ですが、今回は default.dll と同じフォルダに "resource" という名前のフォルダを作ることにします。
&ref(step1.png);
#br
+ ''default.dll をコピーしておく''
作成した resource フォルダにオリジナルの default.dll をコピーしておいてください。
#br
+ ''chromium.org の SVN レポジトリからテーマ関連のファイルをチェックアウト''
エクスプローラで作ったばかりの resource フォルダに移動し、右クリックして [SVN チェックアウト(%%%K%%%)...] を選びます。TortoiseSVN のダイアログが現れるので、[レポジトリのURL] に
 http://src.chromium.org/svn/trunk/src/chrome/app/theme/
と入力して OK をクリックしてください。ダウンロードが開始されます。
&ref(step2.png);
#br
+ ''リソース DLL 生成用のバッチファイルを作る''
チェックアウトが完了したら、次はバッチファイルを書きます。リソーススクリプトのコンパイル、およびリソースの書き換えを自動化して、手間を省きます。ファイル名はなんでもよいのですが、今回は make.bat という名前で新しいファイルを作成し、テキストエディタで以下のように内容を編集して保存します。
 rc theme_resources.rc
 "C:\Program Files\Resource Hacker\ResHacker.exe" -modify default.dll, default.dll, theme_resources.RES , , , 
rc.exe にパスが通ってなかったり、 Resource Hacker の場所が違う場合は適宜書き換えてください。theme_resources.rc がリソーススクリプトです。コイツをコンパイルしてやると theme_resources.RES が生成されます。コイツの中身を Resource Hacker のコマンドラインで default.dll に注入、という流れです。
&ref(step3.png);
#br
+ ''テーマを編集する''
あとは、画像を編集していくだけです。ファイル名から、ある程度画像と UI の対応部分が推測できると思います。resource フォルダで直接編集せずに、resource フォルダを丸ごとコピーして、そこで編集していくのがベターです。編集が一通り終わったら、先ほどの make.bat を実行して、default.dll を更新してください。
&ref(step4.png);
#br
+ ''テーマを適用して確認する''
default.dll を Themes フォルダの default.dll に上書きし、Google Chrome を起動してチェックしてみましょう。

**ファイル一覧(書きかけ) [#ibead256]
***リソース DLL 関連 [#h255e554]
|theme_dll.vcproj|VC++ 用のプロジェクト|
|theme_dll.vsprops||
|theme_resources.h|ヘッダファイル|
|theme_resources.rc|リソーススクリプト|
***ウィンドウ関連 [#i4bfbe32]
|window_bottom_center.png|通常アクティブウィンドウの外枠|
|window_bottom_left_corner.png|~|
|window_bottom_right_corner.png|~|
|window_left_side.png|~|
|window_right_side.png|~|
|window_top_center.png|~|
|window_top_left_corner.png|~|
|window_top_right_corner.png|~|
|window_bottom_center_otr.png|シークレットモードのアクティブウィンドウの外枠|
|window_bottom_left_corner_otr.png|~|
|window_bottom_right_corner_otr.png|~|
|window_left_side_otr.png|~|
|window_right_side_otr.png|~|
|window_top_center_otr.png|~|
|window_top_left_corner_otr.png|~|
|window_top_right_corner_otr.png|~|
|dewindow_bottom_center.png|通常非アクティブウィンドウの外枠|
|dewindow_bottom_left_corner.png|~|
|dewindow_bottom_right_corner.png|~|
|dewindow_left_side.png|~|
|dewindow_right_side.png|~|
|dewindow_top_center.png|~|
|dewindow_top_left_corner.png|~|
|dewindow_top_right_corner.png|~|
|dewindow_bottom_center_otr.png|シークレットモードの非アクティブウィンドウの外枠|
|dewindow_bottom_left_corner_otr.png|~|
|dewindow_bottom_right_corner_otr.png|~|
|dewindow_left_side_otr.png|~|
|dewindow_right_side_otr.png|~|
|dewindow_top_center_otr.png|~|
|dewindow_top_left_corner_otr.png|~|
|dewindow_top_right_corner_otr.png|~|
|back.png|戻るボタン|
|back_d.png|~|
|back_h.png|~|
|back_p.png|~|

*コメント [#y865baf9]
- 初心者です。手順4の後半が分からないのですが、詳しく説明していただけないでしょうか。theme_resources.rcには何を書けばいいのか、theme_resources.RESの中身をどうやってdefault.dllに注入するのかよく分かりません。教えてください。 -- [[朝倉音姫]] &new{2009-07-30 (木) 17:44:55};
- 何の上級者かは内緒です。詳しく説明するのは面倒です。 -- [[上級者]] &new{2009-12-16 (水) 14:27:35};
- 私も初心者なのでよくわかりませんが、theme_resources.rcに何か書く必要があるんですか?注入は「Resource Hacker のコマンドラインで」とそのまんま書いてありますが、そのような質問が出てくるということはこれ間違った記述なんでしょうか? -- [[超初心者]] &new{2010-06-23 (水) 13:36:13};
- 現在の正式安定版バージョン5.0では、このページ後半の「バージョン2.0以前」の方法は使用できません --  &new{2010-06-24 (木) 01:28:01};
- あぁ -- [[あ]] &new{2010-07-15 (木) 11:38:10};
- http://www.chrometheme.net/chrome-theme-creator-online.html -- [[s0s]] &new{2011-09-18 (日) 13:28:09};
- http://www.chromethememaker.com/# --  &new{2012-11-07 (水) 09:45:22};
- I'm extremely impressed with your writing skills and also with the layout on your weblog. Is this a paid theme or did you modify it yourself? Either way keep up the excellent quality writing, it is rare to see a great blog like this one nowadays.. ceebeefbdked -- [[Johne562]] &new{2014-10-18 (Sat) 07:48:41};
- Very nice site! cheap goods http://opxyiea2.com/yoyaqao/4.html -- [[Pharmd167]] &new{2014-10-19 (Sun) 01:29:49};
- Hello!http://generic10viagrapills.com/ ,  , http://fagerstafolketshus.net/ ,  , http://interceptanalytics.com/ ,  , http://promotingirishdesign.com/ ,  , http://balchikinfo.org/ ,  ,  -- [[generic]] &new{2014-10-22 (Wed) 02:55:07};
- Hello!http://www.nofaxingpaydayp8y.com/ ,  , http://www.nocreditcheckp8.com/ ,  , http://tabsviva5.com/all_videos ,  , http://fastdelivery6viagra.com/ ,  , http://pcpfcu.org/holidays.html ,  ,  -- [[payday_loans]] &new{2014-10-31 (Fri) 19:04:18};
- Hello!http://proscar9online.com/ ,  , http://www.cashadvancepaydayp9e.com/ ,  , http://www.fastcashadvance9p.com/ ,  , http://www.cashadvancequick9l.com/ ,  , http://www.cashadvanceonlinep9.com/ ,  ,  -- [[las]] &new{2014-11-07 (Fri) 06:31:28};
- Hello!http://camlibtm.info/ ,  , http://edtherapynow.net/ ,  , http://edfreesamples.com/ ,  , http://lowpricespillsonline.net/ ,  , http://promotingirishdesign.com/ ,  ,  -- [[cialis]] &new{2014-11-10 (Mon) 18:36:38};
- Hello!http://generictabsvia5.com/ ,  , http://canadianpharmacy5online.com/ ,  , http://canadianpharmacy5online.com/contact.htm ,  , http://pcpfcu.org/ ,  , http://pcpfcu.org/holidays.html ,  ,  -- [[cheap_cialis]] &new{2014-11-14 (Fri) 11:13:26};
- tintサブセクションについてなんですが、どのような場合に変えるのでしょうか? また、3つの値の役割(どれをどう変えるると) -- [[debianedition]] &new{2014-11-19 (Wed) 16:08:44};
- 間違えて途中で投稿してしまいました。 tintサブセクションについてなんですが、どのような場合に変えるのでしょうか? また、3つの値の役割(どれをどう変えると どうなるのか等)をご教授いただけますでしょうか? -- [[debianedition]] &new{2014-11-19 (Wed) 16:10:33};
- Hello!http://www.paydayloanapplicationp8.com/ ,  , http://cialispills8.com/ ,  , http://www.nofaxingpaydayp8.com/ ,  , http://www.paydayloansonlinep8.com/ ,  , http://www.faxlesspaydayadvance8p.com/ ,  ,  -- [[loans]] &new{2014-11-19 (Wed) 21:27:53};
- Hello!http://xdviagra-deals.com/ ,  , http://cdrwcentral.com/ ,  , http://onlinepillsonline.com/ ,  , http://cheapillsfasldelivery.com/ ,  , http://bsrproducts.com/ ,  ,  -- [[cialis]] &new{2014-11-22 (Sat) 03:55:29};
- You actually make it seem really easy together with your presentation but I in finding this matter to be really something that I feel I would by no means understand. It sort of feels too complex and extremely broad for me. I'm looking forward for your next publish, Ill try to get the cling of it! dfeacbeefbff -- [[Johnb777]] &new{2014-12-03 (Wed) 20:45:57};
- Hello!http://xdviagra-deals.com/ ,  , http://lowpricespillsonline.net/ ,  , http://bsrproducts.com/ ,  , http://balchikinfo.org/ ,  , http://generictabsvia5.com/ ,  ,  -- [[order_cialis]] &new{2014-12-20 (土) 00:52:39};
- Hello!http://xdviagra-deals.com/ ,  , http://lowpricespillsonline.net/ ,  , http://bsrproducts.com/ ,  , http://balchikinfo.org/ ,  , http://generictabsvia5.com/ ,  ,  -- [[order_cialis]] &new{2014-12-21 (日) 04:24:09};
- Hello!http://xdviagra-deals.com/ ,  , http://edfreesamples.com/ ,  , http://cdrwcentral.com/ ,  , http://lowpricespillsonline.net/ ,  , http://generictabsvia5.com/ ,  ,  -- [[buy_cialis]] &new{2014-12-24 (水) 23:37:17};
- Hello!http://www.viagraonlinebuy12r.com/ ,  , http://www.wheretobuya12cheap.com/ ,  , http://www.howtobuyr12med.com/ ,  , http://www.howtobuyr12pills.com/ ,  ,  -- [[generic]] &new{2014-12-29 (月) 23:14:49};
- Hello!http://www.wheretobuytabs3r.com/ ,  , http://www.wheretobuycheap3r.com/ ,  , http://www.wheretobuyr3tabs.com/ ,  , http://www.wheretobuymed3r.com/ ,  , http://www.wheretobuypills3r.com/ ,  ,  -- [[cialis]] &new{2015-03-16 (月) 16:27:00};
- Hello!http://www.wheretobuyr3pills.com/ ,  , http://www.wheretobuypharm3r.com/ ,  , http://www.howtobuyonline3r.com/ ,  , http://www.howtobuygen3r.com/ ,  ,  -- [[cheap_viagra]] &new{2015-03-18 (水) 08:37:00};
- Hello!http://www.wheretobuyr3pills.com/ ,  , http://www.wheretobuypharm3r.com/ ,  , http://www.howtobuyonline3r.com/ ,  , http://www.howtobuygen3r.com/ ,  ,  -- [[generic]] &new{2015-03-18 (水) 12:52:58};
- Hello!http://generic3viagraonline.com/ ,  , http://edfreesamples.com/ ,  , http://pillsviva5.com/ ,  , http://tabsviva5.com/ ,  , http://generic5tabsonline.com/ ,  ,  -- [[viagra]] &new{2015-04-03 (金) 17:00:35};
- Hello!http://generic3viagraonline.com/ ,  , http://edfreesamples.com/ ,  , http://pillsviva5.com/ ,  , http://tabsviva5.com/ ,  , http://generic5tabsonline.com/ ,  ,  -- [[viagra]] &new{2015-04-03 (金) 17:00:43};
- Hello!http://generic3viagraonline.com/ ,  , http://edfreesamples.com/ ,  , http://pillsviva5.com/ ,  , http://tabsviva5.com/ ,  , http://generic5tabsonline.com/ ,  ,  -- [[prescription]] &new{2015-04-03 (金) 17:01:03};
- Hello!http://edfreesamples.com/ ,  , http://pillsviva5.com/ ,  , http://tabsviva5.com/ ,  , http://canadianpharmacy5online.com/ ,  , http://generic3viagraonline.com/ ,  ,  -- [[cheap_cialis]] &new{2015-04-11 (土) 01:17:51};
- Very informative post.Really thank you! Awesome. -- [[generic]] &new{2015-04-11 (土) 02:03:41};
- Very informative post.Really thank you! Awesome. -- [[generic]] &new{2015-04-11 (土) 02:04:00};
- Very informative post.Really thank you! Awesome. -- [[uk]] &new{2015-04-11 (土) 02:04:09};
- Hello!http://cialis3sample.com/ ,  ,  -- [[cialis_sample]] &new{2015-04-14 (火) 17:42:56};
- Hello!http://free2cialis.com/ ,  ,  -- [[cialis]] &new{2015-04-16 (木) 01:37:20};
- Hello!http://free2cialis.com/ ,  ,  -- [[cialis]] &new{2015-04-16 (木) 12:53:09};
- Hello!http://cialis2cheap.com/ ,  ,  -- [[cialis]] &new{2015-04-17 (金) 01:45:57};
- Hello!http://cialis3dggd.com/ ,  ,  -- [[cialis]] &new{2015-04-20 (月) 16:20:45};
- Thanks a bunch for sharing this with all of us you actually realize what you're talking approximately! Bookmarked. Kindly also visit my web site . We will have a hyperlink exchange arrangement among us! -- [[cia_lis_samples]] &new{2015-05-27 (水) 00:08:28};
- This design is incredible! You obviously know how to keep a reader amused. -- [[cialis]] &new{2015-05-30 (土) 01:05:45};
- This design is incredible! You obviously know how to keep a reader amused. -- [[vs]] &new{2015-05-30 (土) 01:05:59};
- This design is incredible! You obviously know how to keep a reader amused. -- [[cia_lis]] &new{2015-05-30 (土) 01:09:32};
- Hello to all, how is everything, I think every one is getting more from this website, and your views are fastidious in support of new viewers. -- [[generic_cia_lis]] &new{2015-06-05 (金) 15:59:03};
- I am truly thankful to the holder of this website who has shared this fantastic article at here. -- [[cialis]] &new{2015-06-23 (火) 23:53:26};
- I am truly thankful to the holder of this website who has shared this fantastic article at here. -- [[cialis]] &new{2015-06-23 (火) 23:53:40};
- I am truly thankful to the holder of this website who has shared this fantastic article at here. -- [[viagra]] &new{2015-06-23 (火) 23:53:50};
- I am truly thankful to the holder of this website who has shared this fantastic article at here. -- [[via_gra]] &new{2015-06-23 (火) 23:54:22};
- I am truly thankful to the holder of this website who has shared this fantastic article at here. -- [[cia_lis]] &new{2015-06-23 (火) 23:54:31};
- Howdy very nice web site!! Guy .. Excellent .. Superb .. I'll bookmark your web site and take the feeds additionallyI am glad to search out so many helpful info here in the put up, we want develop more techniques in this regard, thanks for sharing. -- [[order_cialis]] &new{2015-07-05 (日) 19:29:20};
- Howdy very nice web site!! Guy .. Excellent .. Superb .. I'll bookmark your web site and take the feeds additionallyI am glad to search out so many helpful info here in the put up, we want develop more techniques in this regard, thanks for sharing. -- [[generic]] &new{2015-07-05 (日) 19:29:26};
- Aw, this was a very nice post. In thought I want to put in writing like this moreover  taking time and actual effort to make an excellent article but what can I say I procrastinate alot and not at all seem to get something done. -- [[order_cialis]] &new{2015-07-06 (月) 12:22:59};
- Aw, this was a very nice post. In thought I want to put in writing like this moreover  taking time and actual effort to make an excellent article but what can I say I procrastinate alot and not at all seem to get something done. -- [[discount_via_gra]] &new{2015-07-06 (月) 12:25:36};
- You have an incredibly nice layout for your blog, i want it to utilize on my site also . -- [[cialis_dosage]] &new{2015-07-10 (金) 03:44:55};
- You have an incredibly nice layout for your blog, i want it to utilize on my site also . -- [[cia_lis_dosage]] &new{2015-07-10 (金) 03:46:24};
- You have an incredibly nice layout for your blog, i want it to utilize on my site also . -- [[via_gra_dosage]] &new{2015-07-10 (金) 03:47:01};
- You have an incredibly nice layout for your blog, i want it to utilize on my site also . -- [[price_via_gra]] &new{2015-07-10 (金) 03:47:08};
- Because here is a list of multiplayer games -- [[cialis]] &new{2015-07-10 (金) 14:29:32};
- Because here is a list of multiplayer games -- [[cia_lis]] &new{2015-07-10 (金) 14:30:34};
- Because here is a list of multiplayer games -- [[herbal_via_gra]] &new{2015-07-10 (金) 14:30:38};
- Hello There. I found your blog using msn. This is a really well written article. Ill make sure to bookmark it and return to read more of your useful information. Thanks for the post. I will definitely return. -- [[viagra_pills]] &new{2016-08-06 (土) 14:21:28};
- Hello There. I found your blog using msn. This is a really well written article. Ill make sure to bookmark it and return to read more of your useful information. Thanks for the post. I will definitely return. -- [[side]] &new{2016-08-06 (土) 14:25:15};
- I got what you mean, regards for putting up.Woh I am delighted to find this website through google. You must pray that the way be long, full of adventures and experiences. by Constantine Peter Cavafy. -- [[herbal_viagra]] &new{2016-08-07 (日) 05:10:55};
- I got what you mean, regards for putting up.Woh I am delighted to find this website through google. You must pray that the way be long, full of adventures and experiences. by Constantine Peter Cavafy. -- [[herbal_via_gra]] &new{2016-08-07 (日) 05:11:59};
- I got what you mean, regards for putting up.Woh I am delighted to find this website through google. You must pray that the way be long, full of adventures and experiences. by Constantine Peter Cavafy. -- [[herbal_via_gra]] &new{2016-08-07 (日) 05:12:05};
- I like what you guys tend to be up too. Such clever work and coverage! Keep up the very good works guys I've incorporated you guys to my personal blogroll. cekdaafddeaa -- [[Johnk330]] &new{2016-08-09 (Tue) 08:48:33};
- Tormoxin 500mg Cod Next Day Delivery in Hartford -- [[generic]] &new{2016-08-24 (Wed) 22:37:46};
- Tormoxin 500mg Cod Next Day Delivery in Hartford -- [[viagra]] &new{2016-08-24 (Wed) 22:37:52};
- Tormoxin 500mg Cod Next Day Delivery in Hartford -- [[generic]] &new{2016-08-24 (Wed) 22:37:58};
- Tormoxin 500mg Cod Next Day Delivery in Hartford -- [[via_gra]] &new{2016-08-24 (Wed) 22:38:22};
- Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content! -- [[viagra_price]] &new{2016-08-25 (Thu) 06:56:57};
- Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content! -- [[cialis_dosage]] &new{2016-08-25 (Thu) 06:57:41};
- Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content! -- [[sildenafil_citrate]] &new{2016-08-25 (Thu) 06:57:51};
- Wow, wonderful blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content! -- [[sildenafil_citrate]] &new{2016-08-25 (Thu) 06:58:03};
- Good website! I truly love how it is easy on my eyes and the data are well written. I'm wondering how I could be notified whenever a new post has been made. I have subscribed to your RSS feed which must do the trick! Have a great day! ddekeekdfkce -- [[Johnd194]] &new{2016-08-25 (Thu) 13:46:32};
- Farmville farms even include free gift that -- [[sildenafil]] &new{2016-08-25 (Thu) 16:19:24};
- Farmville farms even include free gift that -- [[purchase_cia_lis]] &new{2016-08-25 (Thu) 16:19:43};
- Hello. excellent job. I did not expect this. This is a great story. Thanks! cdcfcbkeccge -- [[Johnb821]] &new{2016-12-13 (Tue) 08:27:23};
- Mudbox is a software for 3D sculpting and painting which is developed egdabdeceedg -- [[Johnd131]] &new{2017-01-05 (Thu) 02:03:28};
- I  conceive you have  remarked some very interesting points ,  regards  for the post. fefcfbgeddba -- [[Johna197]] &new{2017-01-05 (Thu) 13:20:46};
- What's Happening i'm new to this, I stumbled upon this I have discovered It positively helpful and it has aided me out loads. I hope to contribute &amp help other users like its helped me. Good job. kdfdfgdbfefd -- [[Johnd55]] &new{2017-01-28 (Sat) 20:55:34};
- reverse lookup cell phone free christian louboutin shoes you are bcecdeddbgfe -- [[Johnc541]] &new{2017-02-21 (Tue) 03:28:18};
- Excellent blog here! Also your web site loads up very fast! What web host are you using? Can I get your affiliate link to your host? I wish my website loaded up as quickly as yours lol dafdekfcadaa -- [[Johne43]] &new{2017-03-13 (Mon) 13:00:31};
- Ultimately, a dilemma that I'm passionate about. I have looked for data of this caliber for the previous various hours. Your internet site is greatly appreciated. dgekcfgeegcd -- [[Johna199]] &new{2017-04-08 (Sat) 21:30:06};

#comment

広告に関するプライバシーポリシー

リロード   新規 下位ページ作成 編集 編集(GUI) 凍結 差分 添付 コピー 名前変更   ホーム 一覧 検索 最終更新 バックアップ リンク元   ヘルプ   最終更新のRSS