Asana

Asana

Quickly add and search tasks in Asana from any web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Asana",
  "version": "2.2.1",
  "description": "Quickly add and search tasks in Asana from any web page.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "minimum_chrome_version": "88",
  "action": {
    "default_icon": "icon128.png",
    "default_title": "Asana",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background_prod.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.asana.com/*"
      ],
      "js": [
        "sidebar.js"
      ],
      "css": [
        "css.css"
      ],
      "exclude_matches": [
        "https://*.asana.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.html",
        "*.js"
      ],
      "extension_ids": [
        "khlcgjmkdafghpggcpdkhgfaoaipbijj"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "incognito": "split",
  "offline_enabled": false,
  "permissions": [
    "cookies",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.asana.com/*"
  ]
}