Bisque

Bisque

A small app to preserve your sanity during the workday.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bisque",
  "description": "A small app to preserve your sanity during the workday.",
  "version": "0.0.5",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "icons": {
    "16": "images/favicon-16.png",
    "24": "images/favicon-24.png",
    "32": "images/favicon-32.png",
    "48": "images/favicon-48.png",
    "64": "images/favicon-64.png",
    "128": "images/favicon-128.png"
  },
  "browser_action": {
    "default_icon": "images/favicon-128.png",
    "default_popup": "popup.html",
    "default_title": "Bisque"
  },
  "permissions": [
    "*://*/*",
    "activeTab",
    "alarms",
    "bookmarks",
    "geolocation",
    "identity",
    "idle",
    "notifications",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com https://cdn.firebase.com https://*.firebaseio.com https://googleapis.com; object-src 'self'",
  "oauth2": {
    "client_id": "75953039302-342cl32npn4rsaejm31dnhhk6pbsfc6s.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/tasks"
    ]
  }
}