Navigation Shortcuts

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

ما هو Navigation Shortcuts؟

Navigation Shortcuts هو إضافة Chrome تم تطويرها بواسطة Kenaniah Cerny، والميزة الرئيسية لها هي "Allows next, up, prev, and top links to be used with simple keyboard shortcuts.".

تحميل ملف CRX للإضافة Navigation Shortcuts

قم بتنزيل ملفات الامتداد Navigation Shortcuts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}