NextPage - auto load the next page

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.

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}