Asana Productivity Hacks

Asana Productivity Hacks

Several Asana hacks that make your life more productive!

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 Productivity Hacks",
  "short_name": "Asana Productivity Hacks",
  "description": "Several Asana hacks that make your life more productive!",
  "version": "0.17",
  "author": "Dennis Paagman",
  "permissions": [
    "storage",
    "tabs",
    "https://app.asana.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "css": [
        "asana-hacks.css"
      ],
      "js": [
        "asana-hacks.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "name": "Asana hack settings",
    "default_icon": "icon.png",
    "default_popup": "settings.html"
  }
}