Previous / Next Page

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

Previous / Next Page là gì?

Previous / Next Page là một tiện ích mở rộng Chrome được phát triển bởi Suresh Raju Pilli, và tính năng chính của nó là "This extension displays the previous or next page by decrementing or incrementing the last number in URL".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Previous / Next Page

Tải xuống các tệp mở rộng Previous / Next Page dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ## 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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Previous / Next Page Previous / Next Page
ID fmichikmgflpgibapdhepmodjdjemmda
URL Chính Thức https://chromewebstore.google.com/detail/previous-next-page/fmichikmgflpgibapdhepmodjdjemmda
Mô tả This extension displays the previous or next page by decrementing or incrementing the last number in URL
Kích Thước Tệp 1.2 MB
Số Lần Cài Đặt 757
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2022-08-01
Ngày Phát Hành 2019-06-16
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Suresh Raju Pilli
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pillisureshraju.in
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}