Tab Auto Refresh

Tab Auto Refresh

Automatically refresh tabs based on custom time intervals

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.1.9",
  "manifest_version": 2,
  "name": "Tab Auto Refresh",
  "short_name": "tab-auto-refresh",
  "homepage_url": "https://mybrowseraddon.com/tab-auto-refresh.html",
  "description": "Automatically refresh tabs based on custom time intervals",
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "notifications"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "browser_action": {
    "default_title": "Tab Auto Refresh",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7fee47a1-8299-4576-90bf-5fd88d756926}"
    }
  }
}