nextpage

use SPC key to goto next page when at the bottom of a page.

nextpageคืออะไร?

nextpage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sylecn และคุณลักษณะหลักของมันคือ "use SPC key to goto next page when at the bottom of a page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย nextpage

ดาวน์โหลดไฟล์ส่วนขยาย nextpage ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When reading online documents or novels, I usually use SPC to scroll page. But SPC doesn't go to next page automatically. This add-on rebinds SPC key so that it scrolls page when there is more on the page, it goes to next page when you are at the bottom of a page. You can also press n key anytime to go to next page directly. From v2.12.0, it prerender or prefetch next page link to speed up page load.

nextpage is free software released under GPLv3. The source code is hosted at github.

BUG Report
===================
If you found a problem and would like to get it fixed, please report it here:
https://github.com/sylecn/ff-nextpage/issues

nextpage tries hard to not get in your way. If you find nextpage breaks your blog admin panel, some online registration form, or any kind of cool web application, please report a bug. You can also use (ignore-on "URL_REGEXP") in user config to disable this add-on on given website.

Currently English, Chinese and German web pages are supported.

nextpage allows you to bind keys to some nextpage related functions. Here is the default key-bindings:

  • SPC scroll up/next page
  • n next page
  • p history back
Here is the real code for this default binding: (bind "SPC" 'nextpage-maybe) (bind "n" 'nextpage) (bind "p" 'history-back) You can disable/overwrite built-in bindings and define your own bindings easily. Read the built-in help document with the installed add-on for more information. Click help button in add-on option. For example, in user preferences page, You can bind p to previous-page: (bind "p" 'previous-page) You can bind c to copy page title and url: (bind "c" 'copy-title-and-url-maybe) This add-on is only 47K zipped.

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ nextpage nextpage
ID njgkgdihapikidfkbodalicplflciggb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nextpage/njgkgdihapikidfkbodalicplflciggb
คำอธิบาย use SPC key to goto next page when at the bottom of a page.
ขนาดไฟล์ 50.31 KB
จำนวนการติดตั้ง 2,475
เวอร์ชันปัจจุบัน 2.16.3
อัปเดตครั้งล่าสุด 2023-12-22
วันที่เผยแพร่ 2019-10-09
คะแนน 4.89/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา sylecn
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/sylecn/ff-nextpage/issues
ภาษาที่รองรับ en-US,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_addonName__",
    "version": "2.16.3",
    "description": "__MSG_addonDescription__",
    "default_locale": "en_US",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "storage.js",
                "nextpage.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}