magical.ly

magical.ly

A simple chrome extension on OpenAI GPT3 for the lazy ones like me.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "magical.ly",
  "version": "1.0.5",
  "description": "A simple chrome extension on OpenAI GPT3 for the lazy ones like me.",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvpL3TtPpTwuvkEe16C905ZuFm65zLmrd/a+oEJULYgmRnnPG8wM+JbTPJRDdhSY/Eva5v6+yvwQdW6ZzHzQq2PMSsIwET0km3iOH8xUF7xVW6vZDPSu/I9Vzhx/0LvXYG6caCIV9C9CGcQa1gmnWqs2HQvloeLtcBkIOBitd/avEVomsZIy/gnTGRv0Sc0AA4Y8a4bs3IIAGWNZsWXVPkvrsET7TgHks7H5SHD6U4SNX9G70Fm9msh7oWzw8FGPOcrFou4I+kRsEulUM+JTb2QZjvEAUk4cnWojkf6y1WhJqNaGWnXN4JPfTYI0YZ50hhVFTU5bOKb1eh5AGE5tQEwIDAQAB",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png",
      "256": "icons/icon-256.png"
    },
    "default_title": "magical.ly",
    "default_popup": "popup.html"
  },
  "permissions": [
    "identity",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "twitter.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://outlook.office.com/*",
        "https://outlook.live.com/*"
      ],
      "js": [
        "outlook.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  }
}