Examine source code of Infy Scroll - A Next Page AutoPager

Inspect and view changes in Infy Scroll - A Next Page AutoPager source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_title": "__MSG_title__",
    "default_icon": {
      "16": "/app/media/icon.png",
      "24": "/app/media/icon.png",
      "32": "/app/media/icon.png"
    },
    "default_popup": "/app/popup/popup.html"
  },
  "background": {
    "scripts": [
      "/app/background/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "infy-scroll@webextensions",
      "strict_min_version": "128.0"
    },
    "gecko_android": {
      "strict_min_version": "128.0"
    }
  },
  "commands": {
    "_execute_browser_action": {},
    "down": {
      "description": "__MSG_down_command__"
    },
    "up": {
      "description": "__MSG_up_command__"
    },
    "power": {
      "description": "__MSG_power_command__"
    },
    "blacklist": {
      "description": "__MSG_blacklist_command__"
    },
    "auto": {
      "description": "__MSG_auto_command__"
    },
    "pause": {
      "description": "__MSG_pause_command__"
    },
    "options": {
      "description": "__MSG_options_command__"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "/app/content/content.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self';"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "/app/media/icon.png",
    "48": "/app/media/icon.png",
    "128": "/app/media/icon.png"
  },
  "manifest_version": 3,
  "name": "__MSG_store_name__",
  "options_page": "/app/options/options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "short_name": "__MSG_short_name__",
  "version": "8.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/-locales/*",
        "/app/content/ajax.js",
        "/lib/iframe-resizer/iframeResizer.contentWindow.js",
        "/shr/picker/picker.html"
      ]
    }
  ]
}