Navigation Shortcuts

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

Apa itu Navigation Shortcuts?

Navigation Shortcuts adalah ekstensi Chrome yang dikembangkan oleh Kenaniah Cerny, dan fitur utamanya adalah "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

Unduh Berkas CRX Ekstensi Navigation Shortcuts

Unduh file ekstensi Navigation Shortcuts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Navigation Shortcuts Navigation Shortcuts
ID ioogigbgjmadikfocfdmmdlghogaehca
URL Resmi https://chrome.google.com/webstore/detail/navigation-shortcuts/ioogigbgjmadikfocfdmmdlghogaehca
Deskripsi Allows next, up, prev, and top links to be used with simple keyboard shortcuts.
Ukuran File 26.33 KB
Jumlah Instalasi 484
Versi Saat Ini 2017.8.30
Terakhir Diperbarui 2017-08-30
Tanggal Publikasi 2017-08-30
Penilaian 4.14/5 Total 21 Penilaian
Pengembang Kenaniah Cerny
Tipe Pembayaran free
Situs Ekstensi https://github.com/kenaniah/chrome-next-page-plugin
URL Halaman Bantuan https://github.com/kenaniah/chrome-next-page-plugin
Bahasa yang Didukung 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"
    }
}