Page Turner

Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.

Page Turnerとは何ですか?

Page Turnerはhttps://www.nathankowald.comによって開発されたChromeの拡張機能で、その主な機能は「Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.」です。

拡張機能のスクリーンショット

screenshot

Page Turner拡張機能のCRXファイルをダウンロード

Page Turner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Page Turner detects back and next links in websites. It allows you to 'turn the page' using your keyboard's left and right arrow keys. Page Turner also prerenders next pages for fast page loads.                    

拡張機能の基本情報

名前 Page Turner Page Turner
ID fpbddhncmmhkaofhcnkjgcdbgcmomebo
公式URL https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo
説明 Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
ファイルサイズ 32.27 KB
インストール数 247
現在のバージョン 3.0.2
最終更新日 2019-05-08
公開日 2019-05-07
評価 4.14/5 合計 7 レビュー
開発者 https://www.nathankowald.com
支払い方法 free
拡張機能のウェブサイト https://github.com/n8kowald/page-turner
ヘルプページのURL https://github.com/n8kowald/page-turner/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Turner",
    "version": "3.0.2",
    "manifest_version": 2,
    "description": "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.",
    "browser_action": {
        "default_icon": "icons\/inactive.png",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icons\/arrow-next.png",
        "icons\/arrow-back.png"
    ],
    "icons": {
        "16": "icons\/inactive.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "page-turner.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}