Tab auto reloader

Tab auto reloader

This extension reloads the current tab at a chosen interval.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab auto reloader",
  "short_name": "Tab reloader",
  "description": "This extension reloads the current tab at a chosen interval.",
  "version": "1.1",
  "homepage_url": "https://github.com/denilsonsa/crx-reload-tab/",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Reload this page every…"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}