Threadit for Chrome

Threadit for Chrome

Short video recordings to share work, connect your team, and get your day back.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Threadit for Chrome",
  "description": "Short video recordings to share work, connect your team, and get your day back.",
  "flags": {
    "env": "PROD"
  },
  "version": "2.1.65.0",
  "author": {
    "email": "[email protected]"
  },
  "icons": {
    "128": "assets/logo128_prod.png"
  },
  "background": {
    "scripts": [
      "background_js.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "assets/logo128_prod.png"
  },
  "permissions": [
    "alarms",
    "identity",
    "identity.email",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "oauth2": {
    "client_id": "360599270308-fpc889cc3bcb41om6pr2mpoulkjg0b80.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "polyfills/webcomponents-ce.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "js/external/jquery2.js",
        "js/external/gmail.js",
        "gmailcontent_js.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "dyntocontent_js.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://threadit.app/*"
      ],
      "js": [
        "recordingcontent_js.js"
      ]
    },
    {
      "matches": [
        "https://threadit.app/*"
      ],
      "js": [
        "threaditcontent_js.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.chat.google.com/*",
        "https://*.dynamite-preprod.sandbox.google.com/*"
      ],
      "js": [
        "chatcontent_js.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://threadit.app/*",
      "https://mail.google.com/*"
    ]
  },
  "web_accessible_resources": [
    "assets/*.png",
    "assets/*.svg",
    "gmailuser.js"
  ],
  "homepage_url": "https://threadit.app",
  "update_url": "https://clients2.google.com/service/update2/crx"
}