Asta

Asta

Asta is a personalized feed of the information you need at work

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Asta",
  "description": "Asta is a personalized feed of the information you need at work",
  "version": "0.1.29",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Asta"
  },
  "icons": {
    "16": "images/viewx_icon.png",
    "48": "images/viewx_icon.png",
    "128": "images/viewx_icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.mail.google.com/*"
      ],
      "css": [
        "static/css/main.css"
      ],
      "js": [
        "static/js/inboxsdk.js",
        "static/js/main.js",
        "popup.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/baseline-help_outline-24px.svg",
    "images/calender_icon.png",
    "images/smiling_emoji.png",
    "images/unicorn.svg",
    "images/user_icon.png",
    "images/viewx_icon.png",
    "images/viewx_logo.png"
  ],
  "externally_connectable": {
    "matches": [
      "https://fonts.googleapis.com/*",
      "https://test.api.viewx.co/*",
      "https://app.asta.ai/*",
      "https://api.asta.ai/*",
      "https://login.viewx.co/*",
      "http://localhost/*"
    ]
  }
}