Space to next page

Space to next page extension help you to load the next page in a web site by pressing on the space bar key.

Space to next pageคืออะไร?

Space to next page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alik Solutions และคุณลักษณะหลักของมันคือ "Space to next page extension help you to load the next page in a web site by pressing on the space bar key."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Space to next page

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

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

                        Space to next page was created out of the need to be more productive and to allow the user to continue perusal sequence in the topic he is reading on forums or other websites.

When you concentrate on reading on some topic, for example, and you reach the bottom of the page, you will usually need to search the button that leads to the next page (which is usually quite small) and click on it with the mouse, your concentration level will likely decrease thereafter, which is also cumbersome. Occasionally debilitating and lowering the desire to continue reading the same topic.

Space to next page was developed to resolve this issue, it works like this:
- The user usually presses the spacebar to scroll down the page.
- When the user reaches the bottom of the page and presses the space bar, automatically the next page of the same topic. Etc. until the last page on the same topic.

All without touching the mouse at all.

In addition, if the user wants to pause the next page by pressing the space bar, click the extension icon (the red icon will appear), To activate, click  on the extension icon (the green icon will appear again).


Suggestions, improvements, problems, please email: [email protected]                    

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

ชื่อ Space to next page Space to next page
ID llmgldlcohohhjambekkphjagpjggpmc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/space-to-next-page/llmgldlcohohhjambekkphjagpjggpmc
คำอธิบาย Space to next page extension help you to load the next page in a web site by pressing on the space bar key.
ขนาดไฟล์ 18.37 KB
จำนวนการติดตั้ง 70
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-07-28
วันที่เผยแพร่ 2020-07-28
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Alik Solutions
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Alik-S/space-to-next-page-chrome-ext
URL หน้าช่วยเหลือ https://github.com/Alik-S/space-to-next-page-chrome-ext/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Space to next page",
    "version": "1.1",
    "icons": {
        "16": "enabled_icon.png",
        "32": "enabled_icon.png",
        "64": "enabled_icon.png",
        "128": "enabled_icon.png"
    },
    "description": "Space to next page extension help you to load the next page in a web site by pressing on the space bar key.",
    "browser_action": {
        "default_title": "Space to next page"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "presistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "version_name": "1.1"
}