Previous and Next page keyboard navigation

Allows you to navigate any paged website using the left and right keyboard keys.

什麼是Previous and Next page keyboard navigation?

Previous and Next page keyboard navigation是由manticorp1234開發的Chrome擴展程式,該擴展的主要功能是“Allows you to navigate any paged website using the left and right keyboard keys.”。

擴展截圖

screenshot
screenshot
screenshot

下載Previous and Next page keyboard navigation擴展crx文件

下載Previous and Next page keyboard navigation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extensions basically allows you to navigate any paginated website just using the left and right keys.

Very simple app, to turn off just click the icon in the top right.

Open source, code hosted here:

https://github.com/manticorp/Chrome-Keyboard-Navigation

If you have any suggestions, bugs or you know of sites that don't work, then file a bug report on the github page or contact me through there.                    

擴展基本資訊

名稱 Previous and Next page keyboard navigation Previous and Next page keyboard navigation
ID bgddcngmfadknajipncoemekkikibfhg
官方網址 https://chromewebstore.google.com/detail/previous-and-next-page-ke/bgddcngmfadknajipncoemekkikibfhg
簡介 Allows you to navigate any paged website using the left and right keyboard keys.
檔案大小 44.05 KB
安裝次數 696
目前版本 0.43
更新時間 2016-04-10
上架時間 2016-04-10
評分 4.12/5 共 25 次評分
開發者 manticorp1234
付費類型 free
擴展官網 https://github.com/manticorp/Chrome-Keyboard-Navigation
說明頁面URL https://github.com/manticorp/Chrome-Keyboard-Navigation
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Previous and Next page keyboard navigation",
    "short_name": "Prev\/Next Keys",
    "description": "Allows you to navigate any paged website using the left and right keyboard keys.",
    "author": "Harry Mustoe-Playfair",
    "version": "0.43",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Toggle Keyboard Navigation"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options.html"
}