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
官方網址 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"
            ]
        }
    ]
}