ReloadMatic: Automatic Tab Refresh

ReloadMatic: Automatic Tab Refresh

ReloadMatic automates the periodic reloading / refreshing of browser tabs. It offers cache control, custom intervals, POST support and many other features. It also integrates with browser features such as tab restore, pinning, and incognito mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ReloadMatic",
  "version": "1.7.1resigned1",
  "author": "Karoly Pados",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "53.0"
    }
  },
  "description": "Automates periodic reloading of browser tabs.",
  "icons": {
    "32": "icon.svg",
    "48": "icon.svg",
    "64": "icon.svg",
    "96": "icon.svg",
    "128": "icon.svg"
  },
  "permissions": [
    "<all_urls>",
    "alarms",
    "menus",
    "tabs",
    "sessions",
    "webRequest",
    "webNavigation",
    "history",
    "storage",
    "notifications"
  ],
  "options_ui": {
    "page": "pages/options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "parseUri.js",
      "create-menus.js",
      "reloadmatic.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}