Go2 Agile Remote Teams

Go2 Agile Remote Teams

Go2 Agile Remote Teams Extension

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Go2 Agile Remote Teams",
  "short_name": "Go2Art",
  "description": "Go2 Agile Remote Teams Extension",
  "version": "0.0.0.5",
  "icons": {
    "16": "icon16.png",
    "18": "icon18.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon18.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "identity",
    "identity.email",
    "https://ajax.googleapis.com/",
    "http://*/*",
    "https://*/*",
    "tabs",
    "storage",
    "desktopCapture",
    "idle",
    "system.display",
    "system.memory",
    "system.cpu",
    "notifications",
    "management"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.2.min.js",
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google.com https://platform.twitter.com; object-src 'self'"
}