Pull to refresh for browsers

Pull to refresh for browsers

Pull down gesture to reload the current webpage, works on desktop. This extension is a remake from the chrome version. ! if the extension is not working at first, refresh the page and try again !

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "",
  "name": "Pull to refresh",
  "version": "1.1.5resigned1",
  "description": "Pull down gesture implementation ( touch / mousewheel / trackpad ) to reload the current webpage.",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "https://*/*",
    "http://*/*",
    "tabs"
  ],
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{e9b34955-7963-471e-b6c7-fe4b1a4abbda}"
    }
  }
}