nextpage

nextpage

use SPC key to goto next page when at the bottom of a page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_addonName__",
  "version": "2.16.3",
  "description": "__MSG_addonDescription__",
  "default_locale": "en_US",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "storage.js",
        "nextpage.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage"
  ]
}