Auto Pagination

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

Was ist Auto Pagination?

Auto Pagination ist eine Chrome-Erweiterung, die von https://jackduffy.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.".

Erweiterungsscreenshots

screenshot

Auto Pagination-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Pagination-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 :)                    

Grundlegende Informationen zur Erweiterung

Name Auto Pagination Auto Pagination
ID bhbiffpojnfflamelholjhaelmmpbpgo
Offizielle URL https://chromewebstore.google.com/detail/auto-pagination/bhbiffpojnfflamelholjhaelmmpbpgo
Beschreibung Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls.
Dateigröße 234 KB
Installationsanzahl 476
Aktuelle Version 0.0.1
Letztes Update 2019-10-31
Veröffentlichungsdatum 2019-10-30
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler https://jackduffy.co.uk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}