Dashboard Refresher & Tabs Revolver/Carousel

Dashboard Refresher & Tabs Revolver/Carousel

Automatically refresh salesforce dashboards, reports and rotate through open tabs. By Abaav

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "bg.html"
  },
  "browser_action": {
    "default_icon": "revolver_t_19.png",
    "default_title": "Abaav - Automatically refresh salesforce dashboards, reports and rotate through open tabs."
  },
  "description": "Automatically refresh salesforce dashboards, reports and rotate through open tabs. By Abaav",
  "icons": {
    "48": "revolver_t_48.png",
    "128": "revolver_t_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "name": "Dashboard Refresher & Tabs Revolver/Carousel",
  "permissions": [
    "storage",
    "tabs",
    "idle",
    "*://*.cloudforce.com/*",
    "*://*.force.com/*",
    "*://*.salesforce.com/*"
  ],
  "version": "0.0.0.1"
}