LearnFast

LearnFast

Simplifying concepts in real-time, so you learn faster

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LearnFast",
  "version": "0.1.3",
  "description": "Simplifying concepts in real-time, so you learn faster",
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "identity",
    "identity.email",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import-content.js"
      ],
      "css": [
        "pages/popup/reactApp.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/popup/index.html",
        "pages/popup/reactApp.css",
        "content.js",
        "popup.css",
        "images/lf.png",
        "images/copy-icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "Learn Fast",
    "default_popup": "pages/popup/index.html"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhcGLL/KAOPrJ1Xw00mME3JiE77Y+ZJ8N4EPlXJZEtxqjENkJwPHdqrRi2QQ1gKKv7ZI4XdW0G//w7OAfOTY8vdMgWK0CWVG8BwgsCH6XV7Nd3dnldoHYsr4U+tQNbxAY3BIJUTYD6sqo2x7yaCzi2ksuGWnodrYdnY6wbi26P6quIGXEMeeG4qiyFRqzx+ZnBvTTzOU14jZ9HDOR4ShDlU0LZM+NFoMH/eGzqaiMbjPEFhFyRVdT/1sOuAODV5slroPd0wSRbvQrVCMCM8akZRVIbd4Ct91HuO2HjZzad/1s5t72PnsXCwx+TvlEHAWrHcTqhSNUB57oLY1D2awrywIDAQAB",
  "oauth2": {
    "client_id": "485234314901-mrgbnmpb0724fihgqf23vske7vqqep07.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}