Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
ما هو Page Turner؟
Page Turner هو إضافة Chrome تم تطويرها بواسطة https://www.nathankowald.com، والميزة الرئيسية لها هي "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Page Turner
قم بتنزيل ملفات الامتداد Page Turner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Page Turner detects back and next links in websites. It allows you to 'turn the page' using your keyboard's left and right arrow keys. Page Turner also prerenders next pages for fast page loads.
معلومات أساسية عن التمديد
الاسم | Page Turner |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
الوصف | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
حجم الملف | 32.27 KB |
عدد التثبيتات | 247 |
النسخة الحالية | 3.0.2 |
آخر تحديث | 2019-05-08 |
تاريخ النشر | 2019-05-07 |
تقييم | 4.14/5 مجموع تقييمات 7 |
المطور | https://www.nathankowald.com |
نوع الدفع | free |
موقع الإضافة | https://github.com/n8kowald/page-turner |
عنوان صفحة المساعدة | https://github.com/n8kowald/page-turner/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Page Turner", "version": "3.0.2", "manifest_version": 2, "description": "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.", "browser_action": { "default_icon": "icons\/inactive.png", "default_popup": "popup\/popup.html" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "icons\/arrow-next.png", "icons\/arrow-back.png" ], "icons": { "16": "icons\/inactive.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page-turner.js" ], "css": [ "styles.css" ] } ] } |