Smart Auto Refresh Pro

Smart Auto Refresh Pro

A smart way to auto refresh web pages on a selected time interval

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com; object-src 'self'",
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "version": "1.0.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}