Navigation Shortcuts

Allows next, up, prev, and top links to be used with simple keyboard shortcuts.

Navigation Shortcuts란 무엇입니까?

Navigation Shortcuts은(는) Kenaniah Cerny에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows next, up, prev, and top links to be used with simple keyboard shortcuts."입니다.

Navigation Shortcuts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A must-have extension for reading online books, documentation, tutorials, and blogs! Easily navigate in between webpages with these extremely simple keyboard shortcuts:

Space Bar -  navigates to the next page when scrolled to the bottom
Shift + Space Bar - navigates to the previous page when scrolled to the top. 

(Use the Option key instead of the Ctrl key on Mac)

Ctrl + Right - navigates to the next page
Ctrl + Left - navigates to the previous page
Ctrl + Up - navigates to section's index page
Ctrl + Shift + Up - navigates to the top page

Uses HTML's rel attribute and smart link detection to determine where to go. Currently rel="next", rel="prev", rel="up", and rel="top" are supported.

Source code at https://github.com/kenaniah/chrome-navigation-plugin/

Improvements and suggestions are welcome!                    

확장 프로그램 기본 정보

이름 Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
공식 URL https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
설명 Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
파일 크기 26.33 KB
설치 횟수 484
현재 버전 2017.8.30
최근 업데이트 2017-08-30
출시 날짜 2017-08-30
평점 4.14/5 총 21 개의 평점
개발자 Kenaniah Cerny
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kenaniah/chrome-next-page-plugin
도움말 페이지 URL https://github.com/kenaniah/chrome-next-page-plugin
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Navigation Shortcuts",
    "version": "2017.8.30",
    "manifest_version": 2,
    "description": "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.",
    "permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}