Tweet helper by Penelope

Tweet helper by Penelope

Tweet helper by Penelope helps you write tweets with AI power. Right now there are two features. 1. Paraphrasing 2. Summarizing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Tweet helper by Penelope",
  "name": "Tweet helper by Penelope",
  "version": "1.1.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "assets/index.html",
    "default_icon": {
      "16": "/images/icon48.png"
    }
  },
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "content_security_policy": {
    "script-src": "self"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}