Loopio Chrome Extension

Loopio Chrome Extension

Now you can quickly import questionnaires from online portals into the Loopio Platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Loopio Chrome Extension",
  "version": "2.7.4",
  "description": "Now you can quickly import questionnaires from online portals into the Loopio Platform.",
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "scripting",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "options_page": "options.html",
  "icons": {
    "16": "images/loopio16.png",
    "32": "images/loopio32.png",
    "48": "images/loopio48.png",
    "128": "images/loopio128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhGkM1tphlGpGVo805fzxHA9JWF0a1mEU2ZBsNhwX9koDYf0acGjmK0W3X4ShsxJG5UH81A0i9UdAXGD8kwUirriIkXQtkNNHFKz7tHZNDNgn2finmxQShQ0GB9ZH3SF9Ag0Qwpf1mkuvT4i6/XS0jxtLpA8CH6WIlmj/vZdhjdqoUKrgFkF7+81462pJQ9pIfpJWNFZAiPnsQKoeHycC63aP8YKwQ8fyoSZTp6r+kQcJ9QnjF1I6tgdEBF8olzOI3HskF5zzyk1Ol4H3WNa4f5eaiR7HaH0kZU1Z5Jza4MG4Rj8oIKK8D9i/8aBqUmekiIQZfJd//SWaGHKC9DB66wIDAQAB",
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "js/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "images/loopio16.png",
      "32": "images/loopio32.png",
      "48": "images/loopio48.png",
      "128": "images/loopio128.png"
    }
  },
  "host_permissions": [
    "https://*.loopio.com/*",
    "https://*.loopiodev.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "js/content-script.js"
      ]
    },
    {
      "matches": [
        "*://*.officeapps.live.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "js/content-script-ms.js"
      ]
    }
  ]
}