Auto Pagination

Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.

Auto Pagination란 무엇입니까?

Auto Pagination은(는) https://jackduffy.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls."입니다.

확장 프로그램 스크린샷

screenshot

Auto Pagination 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The aim with this extension is to automatically figure out the next paginated URL for compatible websites, so you don't have to go hunting for the 'Next' or 'Page 10832578' button at the bottom of the site. Once you're ready to go forward, simply click the forwards button in your browser.

I made this super quickly when browsing a search engine and wanted to use the dedicated buttons on my mouse to go forward. At the moment, it supports a couple of the major search engines as well as most WordPress sites (and any site that uses URL parameters like ?page=1 or ?page=2).

I've not attempted to work with continuous feed style sites, nor will this work on everything. Please leave feedback or contact directly with sites you'd like me to take a look at :)                    

확장 프로그램 기본 정보

이름 Auto Pagination Auto Pagination
ID bhbiffpojnfflamelholjhaelmmpbpgo
공식 URL https://chromewebstore.google.com/detail/auto-pagination/bhbiffpojnfflamelholjhaelmmpbpgo
설명 Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.
파일 크기 234 KB
설치 횟수 476
현재 버전 0.0.1
최근 업데이트 2019-10-31
출시 날짜 2019-10-30
평점 3.33/5 총 3 개의 평점
개발자 https://jackduffy.co.uk
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Pagination",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.",
    "homepage_url": "https:\/\/jackduffy.co.uk",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/*\/*"
    ],
    "content_security_policy": "default-src 'self';",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ]
}