CommentEase - One tool for post comments easy

CommentEase - One tool for post comments easy

You can easily post comments on Youtube, Twitter and other platforms through ChatGTP

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.0",
  "icons": {
    "16": "assets/logo/comment_ease_16.png",
    "48": "assets/logo/comment_ease_48.png",
    "128": "assets/logo/comment_ease_128.png"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "assets/logo/comment_ease_16.png",
      "24": "assets/logo/comment_ease_24.png",
      "32": "assets/logo/comment_ease_32.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./js/index.js"
      ],
      "css": [
        "./assets/css/main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}