Pagerize Plus

Pagerize Plus

Enable automatic pagination on numerous web sites. Infinite scroll

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "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>"
  ],
  "version": "1.0.5",
  "web_accessible_resources": [
    "html/loading.html",
    "html/error.html",
    "loading.gif"
  ]
}