Anna Assistant

Anna Assistant

Your Personal Assistant on Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anna Assistant",
  "short_name": "Anna",
  "version": "1.5",
  "description": "Your Personal Assistant on Google Chrome.",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon.png"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/on-off-switch.js",
      "js/on-off-switch-onload.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Anna",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "webNavigation",
    "*://*/*",
    "<all_urls>",
    "activeTab",
    "bookmarks",
    "identity.email",
    "identity",
    "tabs",
    "storage",
    "https://ajax.googleapis.com/",
    "http://clients1.google.com/complete/search"
  ],
  "web_accessible_resources": [
    "img/*"
  ]
}