Rotate Page in Google Books

Click on a book page to get arrows in the upper corners for rotating the page in 90 degree increments.

Rotate Page in Google Books란 무엇입니까?

Rotate Page in Google Books은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click on a book page to get arrows in the upper corners for rotating the page in 90 degree increments."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Rotate Page in Google Books 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Rotates selected pages in Google Books results.

Some books have pages that are best viewed when rotated by 90 degrees right or left (i.e. clockwise or anti-clockwise). RotateBookPage makes this easy, right in the Google Books display of the book pages.

Step 1: Search for a book that has a page that needs to be rotated. For example: https://books.google.com/books?id=JS4QAAAAYAAJ&pg=PA25

Step 2: Click on the page to be rotated (page 25 in the example). Arrows in green circles ("rotation arrows") are displayed at the top-left and top-right corners of the page.

Step 3a: Click on the rotation arrow in the top-right corner to rotate the page to the right (i.e. clockwise).

Step 3b: Click on the rotation arrow in the top-left corner to rotate the page to the left (i.e. anti-clockwise).

Step 4: Click on the page again (when it isn't rotated) to remove the rotation arrows.                    

확장 프로그램 기본 정보

이름 Rotate Page in Google Books Rotate Page in Google Books
ID njekdcbanhfkdnnfmmbidoacmankeplg
공식 URL https://chromewebstore.google.com/detail/rotate-page-in-google-boo/njekdcbanhfkdnnfmmbidoacmankeplg
설명 Click on a book page to get arrows in the upper corners for rotating the page in 90 degree increments.
파일 크기 37.49 KB
설치 횟수 794
현재 버전 0.0.2
최근 업데이트 2016-09-23
출시 날짜 2016-09-23
평점 2.50/5 총 4 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rotate Page in Google Books",
    "short_name": "RotateBookPage",
    "description": "Click on a book page to get arrows in the upper corners for rotating the page in 90 degree increments.",
    "version": "0.0.2",
    "minimum_chrome_version": "38",
    "icons": {
        "128": "assets\/rotate-page-128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/books.google.com\/books"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/books.google.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "books.js"
            ]
        }
    ]
}