Pragma

Pragma

Achieve more with less effort using Pragma's AI Assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pragma",
  "description": "Achieve more with less effort using Pragma's AI Assistant",
  "version": "1.8.50",
  "background": {
    "service_worker": "/background.js"
  },
  "icons": {
    "12": "img/logo.png",
    "32": "img/logo.png",
    "64": "img/logo.png"
  },
  "action": {},
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "scripting",
    "notifications",
    "downloads",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://mail.google.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/pageWorld.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    },
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "/assets/*"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "/fonts/*"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "/popup.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://app.pragma.ai/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ]
}