Firefox 13에서 새 탭 페이지의 썸네일 수를 어떻게 늘릴 수 있나요?

Firefox 13에서 새 탭 페이지의 썸네일 수를 어떻게 늘릴 수 있나요?

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>

한 줄에 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"/>

다른 블록과 같습니다(완전한 행렬의 경우).

관련 정보