Launch

Launch

Launch. Your Next Career Faster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Launch",
  "description": "Launch. Your Next Career Faster.",
  "version": "0.3.6",
  "manifest_version": 3,
  "icons": {
    "48": "img/launch_icon.png",
    "128": "img/launch_icon.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvMaydksF13r/rOZrWGo+UGP0cai0BcC/0pAapPbiPNP4HCAcxzsENEIS49JaXXhGRx2zxEsvtgQgzcwte0p6slh/eamfkdbhKs9a4wHz3evd38QLcumqT21k48r8BXatTA24dUS8kjjD6PespCcBRKbTEd55aJIVyntbqE5iZyoiNN5mrMEsNKUG+N3hbFjEKRxUhUWn9y8rfmSz8IRpEuOQNGL2raaf6Ug5ZnTbuWrXwidG3GjczDjR7dNzuCVCQBw0ZR1OS9Bcr2t/PmcLWuyXL82rwHkuS56BmBSrCnSRd2ExJHiUvElSiLTat2uN7M+cIqAYY1BENqkscOdWawIDAQAB",
  "background": {
    "service_worker": "./extensions/js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "./extensions/js/content.js",
        "./assets/izitoast/js/iziToast.min.js"
      ],
      "css": [
        "./assets/izitoast/css/iziToast.min.css",
        "./assets/confetti/confetti-tingle.min.css",
        "./extensions/css/index.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://learn.microsoft.com/*",
        "*://*.udemy.com/*"
      ],
      "all_frames": true,
      "js": [
        "./extensions/js/videoTracking.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://medium.com/*",
        "*://*.medium.com/*",
        "*://stackoverflow.com/*",
        "*://*.w3schools.com/*"
      ],
      "exclude_globs": [
        "*search?q=*"
      ],
      "all_frames": true,
      "js": [
        "./extensions/js/textParsing.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_globs": [
        "*youtube.com*",
        "*google.com*",
        "*udemy.com*"
      ],
      "all_frames": true,
      "js": [
        "./extensions/js/textTracking.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "identity",
    "tabs",
    "storage",
    "webNavigation"
  ],
  "content_security_policy": {
    "script-src": "self unsafe-eval",
    "object-src": "self"
  }
}