Asana2Go

Asana2Go

Copy, export, and print from Asana flexibly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Asana2Go",
  "short_name": "Asana2Go",
  "description": "Copy, export, and print from Asana flexibly",
  "version": "1.8.12",
  "offline_enabled": false,
  "icons": {
    "16": "img/a2g_logo_16.png",
    "32": "img/a2g_logo_32.png",
    "48": "img/a2g_logo_48.png",
    "128": "img/a2g_logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png",
        "img/*.gif",
        "content.html",
        "sandbox_wrapper.html",
        "sandbox.html"
      ],
      "matches": [
        "https://*.asana.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.asana.com/*"
      ],
      "js": [
        "lib/jquery/jquery-3.3.1.min.js",
        "lib/bootstrap/js/bootstrap.bundle.min.js",
        "lib/bootstrapdatepicker/js/bootstrap-datepicker.min.js",
        "lib/sugar/sugar.min.js",
        "content_script.js"
      ],
      "css": [
        "lib/bootstrap_namespaced/bootstrapcustom.min.css",
        "lib/bootstrap_namespaced/bootstrapcustom_overrides.css",
        "lib/bootstrapdatepicker/css/bootstrap-datepicker.css",
        "content_script.css"
      ],
      "all_frames": false
    }
  ],
  "action": {
    "default_icon": {
      "16": "img/a2g_logo_16.png",
      "24": "img/a2g_logo_24.png",
      "32": "img/a2g_logo_32.png"
    },
    "default_title": "Asana2Go",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "unlimitedStorage",
    "declarativeContent",
    "cookies"
  ],
  "host_permissions": [
    "https://*.asana.com/*"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "options_page": "options.html",
  "commands": {
    "copy": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "Copy selected tasks/subtasks"
    },
    "print": {
      "description": "Print selected tasks/subtasks"
    },
    "puppyAdd": {
      "suggested_key": {
        "default": "Alt+Shift+PageUp"
      },
      "description": "Add a puppy"
    },
    "dateShnoozeShow": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      },
      "description": "Enter Dates/Triage"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+G"
      }
    }
  }
}