Taboverflow

Taboverflow

Tab-Overflow will help you in an efficient way to manage the browser tabs that you're using. An average user usually has to work…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Taboverflow",
  "version": "2.0.0",
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "128": "img/128.png"
  },
  "background": {
    "scripts": [
      "js/background/tab_data.js"
    ],
    "persistent": false
  },
  "options_page": "home.html",
  "permissions": [
    "tabs",
    "storage",
    "https://*.firebaseio.com/"
  ],
  "content_security_policy": "script-src 'self' https://smtpjs.com https://ajax.googleapis.com https://www.gstatic.com/ https://maxcdn.bootstrapcdn.com https://*.firebaseio.com https://cdn.firebase.com; object-src 'self'; connect-src 'self' wss://*.firebaseio.com https://smtpjs.com;"
}