Office Otter for Chrome

Office Otter for Chrome

Create tasks from any webpage!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Office Otter for Chrome",
  "description": "Create tasks from any webpage!",
  "version": "2.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/16otter.png",
    "32": "./icons/32otter.png",
    "48": "./icons/48otter.png",
    "128": "./icons/128otter.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./build/static/js/main.js"
      ],
      "css": [
        "./build/static/css/main.css"
      ]
    }
  ],
  "background": {
    "service_worker": "./src/browser/browser.js"
  },
  "options_page": "",
  "action": {
    "default_icon": {
      "16": "./icons/16otter.png",
      "32": "./icons/32otter.png",
      "48": "./icons/48otter.png",
      "128": "./icons/128otter.png"
    },
    "default_popup": "./src/init-popup/init.html",
    "default_title": "Create a task in Office Otter"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "contextMenus",
    "identity"
  ],
  "host_permissions": [
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "oauth2": {
    "client_id": "1045598120342-505s5f6k0fc02ifmdch5idnbl9vngoto.apps.googleusercontent.com",
    "scopes": [
      ""
    ]
  },
  "externally_connectable": {
    "matches": [
      "<all_urls>",
      "http://*/*",
      "https://*/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs4PixOWv+CPoOHcXmCTBUyIKhQhkCrFngehzkxWXVDkfAKAkwsI+fWSuLQKGKc/+EzLclqIoPMVigNxvItFsnCWd5RBBKkdZddxWkgvX5UppVLR7FL0OBBUaydhZT+Kj3UU7x50o961KOsr3txLrY3YAXd6ZC0k2NC1OxEg0SqBn6zoSL7Ra2raUShSYOPRhhZM+HtjIqRl5L5R9FUYO6Xodx7IvkIJK16t8tpBYQWia3ivtch/EA8YC2VZ1UPnSSXTwTINShRusnIVpwISMyph/qev+hKtnJtcP4y0IFS/asK1+NGy7sfPmAonvKfYtylcGZmAoUquWjgRREW1z4wIDAQAB"
}