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文件

下载Rotate Page in Google Books扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}