Better Pagerize

Better Pagerize

Infinite scroll on thousands of web sites. Enable auto pagination on web sites that do not support it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "300": "icons/icon-300.png"
  },
  "options_ui": {
    "page": "html/options.html"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.5.0",
  "web_accessible_resources": [
    "html/loading.html",
    "html/error.html",
    "loading.gif"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}