Asana New Tab

Asana New Tab

Manage your Asana tasks on every new 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": "Asana New Tab",
  "description": "Manage your Asana tasks on every new tab",
  "version": "2.1",
  "icons": {
    "128": "icon.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "author": "Or Lenchner",
  "homepage_url": "https://github.com/orlench/asana-new-tab",
  "background": {
    "scripts": [
      "jquery.js",
      "options.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "*://*.asana.com/*"
  ],
  "web_accessible_resources": [
    "index.html"
  ],
  "incognito": "split"
}