Teamapps

Teamapps

TeamApps extension for Chrome helps you to sync your apps' documentation

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Teamapps",
  "version": "1.3.8",
  "description": "TeamApps extension for Chrome helps you to sync your apps' documentation",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "host_permissions": [
    "https://www.appsheet.com/home/apps",
    "https://www.appsheet.com/Template/Apps",
    "https://www.appsheet.com/*",
    "https://appsheet.com/home/apps",
    "https://appsheet.com/Template/Apps",
    "https://appsheet.com/*"
  ],
  "permissions": [
    "scripting",
    "identity",
    "identity.email",
    "storage"
  ],
  "action": {
    "default_title": "Teamapps"
  },
  "content_scripts": [
    {
      "matches": [
        "https://appsheet.com/*"
      ],
      "js": [
        "jquery.js",
        "progressBar.js",
        "env.js",
        "ui.js",
        "popup.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://teamapps.web.app/*",
      "*://app.teamapps.io/*",
      "*://eu.teamapps.io/*",
      "*://teamapps-uat.web.app/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  }
}