Pull to refresh

Pull to refresh

Supports pull-to-refresh with touchscreens and precision touchpads, similar to overscroll history navigation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_shortName__",
  "version": "0.1.0",
  "description": "__MSG_extensionDesc__",
  "author": "Fuwei Chin",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon_16x16.png",
    "32": "icons/icon_32x32.png",
    "48": "icons/icon_48x48.png",
    "128": "icons/icon_128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "minimum_chrome_version": "114",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}