TabSnooze

TabSnooze

Make tabs come back later

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TabSnooze",
  "description": "Make tabs come back later",
  "version": "0.31",
  "permissions": [
    "tabs",
    "notifications",
    "alarms",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "images/icon19.png"
    },
    "default_title": "Snooze Tab",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}