NextPage - auto load the next page

Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.

Τι είναι το NextPage - auto load the next page;

Το NextPage - auto load the next page είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ciborski.com, και η κύρια λειτουργία του είναι "Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης NextPage - auto load the next page

Λήψη αρχείων επέκτασης NextPage - auto load the next page σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension will automatically load the next page when you reach the end of a page.

Works for the most popular sites:
 - Google
 - Bing
 - and many other boards and forums

You can write your own custom rules in the extension options (right click -> options).

You can blacklist URLs to skip pagination for them (right click -> options).

You can submit your rules to global database by opening a Pull Request with your rule - https://github.com/episage/next-page-chrome-extension/issues/new                    

Βασικές Πληροφορίες Επέκτασης

Όνομα NextPage - auto load the next page NextPage - auto load the next page
ID iokagnmembcjfocpbfmdojdghbfjpmkb
Επίσημο URL https://chromewebstore.google.com/detail/nextpage-auto-load-the-ne/iokagnmembcjfocpbfmdojdghbfjpmkb
Περιγραφή Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.
Μέγεθος Αρχείου 467 KB
Αριθμός Εγκαταστάσεων 14,037
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2023-07-12
Ημερομηνία Δημοσίευσης 2020-06-04
Αξιολόγηση 4.54/5 Συνολικά 24 Αξιολογήσεις
Προγραμματιστής https://ciborski.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://docs.google.com/document/d/1GTrEd3GRZkbQHbtQICZ20lbyz58i7J8ft96hHIUP9fc/edit?usp=sharing
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NextPage - auto load the next page",
    "short_name": "NextPage",
    "description": "Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.",
    "version": "2.0.0",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "images\/manifest\/16.png",
        "32": "images\/manifest\/32.png",
        "48": "images\/manifest\/48.png",
        "128": "images\/manifest\/128.png"
    },
    "options_page": "src\/options\/index.html",
    "background": {
        "service_worker": "src\/backgroundScript.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/iokagnmembcjfocpbfmdojdghbfjpmkb?authuser=0&hl=en",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/contentScript.js"
            ]
        }
    ]
}