Previous / Next Page

This extension displays the previous or next page by decrementing or incrementing the last number in URL

Previous / Next Page란 무엇입니까?

Previous / Next Page은(는) Suresh Raju Pilli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension displays the previous or next page by decrementing or incrementing the last number in URL"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Previous / Next Page 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ## Previous-Next Page

Project Webpage: https://psrdotcom.github.io/NextTaskPage/

Try it out in [jsfiddle](https://jsfiddle.net/venkysiram/soru83cs/)

This extension displays the Previous / Next page by decrementing / incrementing the number in URL.

### Shortcuts:

Navigating to Previous page : Alt + p

Navigating to Next page : Alt + n

### Previous page Examples:

Example 1:  www.psrdotcom.blogspot.com/page/2

Upon clicking the previous page icon in extension, it will take you to www.psrdotcom.blogspot.com/page/1

Example 2:  www.psrdotcom.blogspot.com/page-2

Upon clicking the previous page icon in extension, it will take you to www.psrdotcom.blogspot.com/page-1

Example 3:

http://www.siram.com/test0002.jsp/ will return http://www.siram.com/test0001.jsp/

Exmaple 4:

http://www.siram.com/test0100.jsp/ will return http://www.siram.com/test0099.jsp/

Exmaple 5:

http://www.siram.com/test0001.jsp/ will return http://www.siram.com/test0001.jsp/

### Next page Examples:

Example 1:  www.psrdotcom.blogspot.com/page/1

Upon clicking the next page icon in extension, it will take you to  www.psrdotcom.blogspot.com/page/2

Example 2:  www.psrdotcom.blogspot.com/page-1 

Upon clicking the next page icon in extension, it will take you to  www.psrdotcom.blogspot.com/page-2

Example 3:

http://www.siram.com/test0001.jsp/ will now return http://www.siram.com/test0002.jsp/

Exmaple 4:

http://www.siram.com/test0099.jsp/ will now return http://www.siram.com/test0100.jsp/                    

확장 프로그램 기본 정보

이름 Previous / Next Page Previous / Next Page
ID fmichikmgflpgibapdhepmodjdjemmda
공식 URL https://chromewebstore.google.com/detail/previous-next-page/fmichikmgflpgibapdhepmodjdjemmda
설명 This extension displays the previous or next page by decrementing or incrementing the last number in URL
파일 크기 1.2 MB
설치 횟수 757
현재 버전 1.0.5
최근 업데이트 2022-08-01
출시 날짜 2019-06-16
평점 4.56/5 총 9 개의 평점
개발자 Suresh Raju Pilli
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pillisureshraju.in
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Previous \/ Next Page",
    "description": "This extension displays the previous or next page by decrementing or incrementing the last number in URL",
    "version": "1.0.5",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Previous \/ Next page"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "previous-page": {
            "suggested_key": {
                "default": "Alt+P",
                "mac": "Alt+P"
            },
            "description": "Navigates to previous page"
        },
        "next-page": {
            "suggested_key": {
                "default": "Alt+N",
                "mac": "Alt+N"
            },
            "description": "Navigates to next page"
        }
    }
}