Typli.Ai

Typli.Ai

Typli.Ai is an AI-powered writing tool that helps you create high-quality content, in just a few seconds, at a fraction of the cost!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Typli.Ai",
  "version": "0.2.4",
  "description": "Typli.Ai is an AI-powered writing tool that helps you create high-quality content, in just a few seconds, at a fraction of the cost!",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "login/login.html",
    "default_title": "contentbox",
    "default_icon": "./assets/logo/icon.png"
  },
  "icons": {
    "128": "./assets/logo/icon.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "*"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "https://typli.ai/*",
    "storage",
    "notifications"
  ]
}