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 هو إضافة Chrome تم تطويرها بواسطة manticorp1234، والميزة الرئيسية لها هي "Allows you to navigate any paged website using the left and right keyboard keys.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Previous and Next page keyboard navigation
قم بتنزيل ملفات الامتداد Previous and Next page keyboard navigation بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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" } |