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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically add the next page to your browser, letting you click the forward button rather than rely on website controls."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto Pagination एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}