Firefox 13 では、新しいタブ ページに最近表示したサイトをプレビューするサムネイルが 9 個あります。
表示されるサムネイルの数を増やすにはどうすればいいですか?
試してみましたabout:config
が、関連するエントリは見つかりませんでした。Google でも関連するものは何も見つかりませんでした。
答え1
使用新しいタブツール新しいタブページのサムネイルの数をカスタマイズできます。
答え2
サムネイルの数を増やす言及されていないFirefox 13の新規タブページ機能のドキュメント
の新しいタブキング拡張機能表示するサムネイルの数を設定できます。デフォルトは 4 行 3 行ですが、行数を増やすことができます。
答え3
about:configで試してみました...
エントリはbrowser.newtabpage
列と行の整数値の下にあります。右クリックして、新しい値の変更を選択するだけです。
browser.newtabpage.columns // int val
browser.newtabpage.rows // int val
実際に以下のような卑猥なものを追加することもできます(15*15)
答え4
ファイルを検索/usr/lib/firefox/omni.ja/chrome/browser/content/browser/newtab/newTab.xul
次の行を探します:
<div id="newtab-grid">
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
</div>
1 行あたり 4 つのサムネイルの場合は、次のように置き換えます。
<div id="newtab-grid">
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
</div>
または追加
<div class="newtab-cell"/>
各行
<div class="newtab-row">
ブロックを追加して行ごとにより多くのサムネイルを表示します。行数を増やす必要がある場合は、ブロック全体を追加します。
<div class="newtab-row">
<div class="newtab-cell"/>
<div class="newtab-cell"/>
<div class="newtab-cell"/>
</div>
同じ数の行を残すように注意する
<div class="newtab-cell"/>
他のブロックと同様 (完全なマトリックスの場合)。