Page Refresh

Page Refresh

Finally a page refresh that works. Reload any page with just a few clicks. Page refresh works on any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.13.5",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_name__",
  "short_name": "pagerefresh",
  "description": "__MSG_description__",
  "icons": {
    "16": "19x19.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "browser_action": {
    "default_icon": "128x128.png",
    "default_title": "Page Refresh",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}