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.」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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"
]
}
]
} | |