Auto Refresh & Switch Tabs

Auto Refresh & Switch Tabs

Every 20 secondes : Switch to next tab & refresh next (+1) tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Refresh & Switch Tabs",
  "description": "Every 20 secondes : Switch to next tab & refresh next (+1) tab",
  "version": "1.0",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/16x16.png",
    "32": "img/32x32.png",
    "128": "img/icon_128.png"
  },
  "background": {
    "scripts": [
      "js/app.js"
    ]
  }
}