Auto Pagination
Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.
ما هو Auto Pagination؟
Auto Pagination هو إضافة Chrome تم تطويرها بواسطة https://jackduffy.co.uk، والميزة الرئيسية لها هي "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Pagination
قم بتنزيل ملفات الامتداد Auto Pagination بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
The aim with this extension is to automatically figure out the next paginated URL for compatible websites, so you don't have to go hunting for the 'Next' or 'Page 10832578' button at the bottom of the site. Once you're ready to go forward, simply click the forwards button in your browser. I made this super quickly when browsing a search engine and wanted to use the dedicated buttons on my mouse to go forward. At the moment, it supports a couple of the major search engines as well as most WordPress sites (and any site that uses URL parameters like ?page=1 or ?page=2). I've not attempted to work with continuous feed style sites, nor will this work on everything. Please leave feedback or contact directly with sites you'd like me to take a look at :)
معلومات أساسية عن التمديد
الاسم | Auto Pagination |
ID | bhbiffpojnfflamelholjhaelmmpbpgo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-pagination/bhbiffpojnfflamelholjhaelmmpbpgo |
الوصف | Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls. |
حجم الملف | 234 KB |
عدد التثبيتات | 476 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2019-10-31 |
تاريخ النشر | 2019-10-30 |
تقييم | 3.33/5 مجموع تقييمات 3 |
المطور | https://jackduffy.co.uk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Pagination", "version": "0.0.1", "manifest_version": 2, "description": "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.", "homepage_url": "https:\/\/jackduffy.co.uk", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*\/*" ], "content_security_policy": "default-src 'self';", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ] } |