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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionName__",
  "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>"
      ],
      "world": "MAIN"
    }
  ],
  "minimum_chrome_version": "114"
}