Upcopy.ai Chrome Extension

Upcopy.ai Chrome Extension

Upcopy.ai Chrome Extension empowers you to express yourself with precision and impact wherever you write on the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upcopy.ai Chrome Extension",
  "version": "1.0",
  "author": "Citispotter Ltd.",
  "description": "Upcopy.ai Chrome Extension empowers you to express yourself with precision and impact wherever you write on the internet.",
  "manifest_version": 3,
  "background": {
    "service_worker": "src/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://dashboard.upcopy.ai/*"
      ],
      "js": [
        "src/js/content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "src/assets/images/icon48.png",
    "48": "src/assets/images/icon48.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "notifications",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Press Ctrl(Win)/Command(Mac)+Shift+Right/Left to flip tabs"
  }
}