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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Space to next page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}