Tweeter AI

Tweeter AI

An advanced AI that will create and post tweets for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/const.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "login.html",
    "default_title": "TweeterAI"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/main.css"
      ],
      "js": [
        "js/vendor.js",
        "lib/sweetalert.min.js",
        "lib/arrive.js",
        "js/content.js",
        "js/text.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "An advanced AI that will create and post tweets for you. ",
  "icons": {
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "name": "Tweeter AI",
  "content_security_policy": "script-src 'self' https://3mia3gz9ga.execute-api.us-east-1.amazonaws.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "background"
  ],
  "version": "3.2.0",
  "web_accessible_resources": [
    "*.png"
  ]
}