Auto refresh Chrome

Auto refresh Chrome

Chrome refresh all tabs, reload tab, safe and free forever.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "name": "Auto refresh Chrome",
  "version": "5.0.2",
  "default_locale": "en",
  "description": "Chrome refresh all tabs, reload tab, safe and free forever.",
  "author": "Tony Pham",
  "options_page": "options.html",
  "externally_connectable": {
    "matches": [
      "https://www.google.com/"
    ]
  },
  "background": {
    "persistent": true,
    "scripts": [
      "assets/js/vendors.js",
      "assets/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/vendors.js",
        "assets/js/content-scripts.js"
      ],
      "css": [
        "assets/css/app.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "Auto refresh Chrome",
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}