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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}