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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Space to next page 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}