Writesmart

Writesmart

GPT-Powered LinkedIn Comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Writesmart",
  "version": "1.1.0",
  "description": "GPT-Powered LinkedIn Comments",
  "permissions": [
    "storage",
    "tabs"
  ],
  "externally_connectable": {
    "matches": [
      "http://*.linkedin.com/*",
      "https://*.linkedin.com/*",
      "https://dev.writesmart.so/*",
      "https://app.writesmart.so/*",
      "https://beta.writesmart.so/*"
    ]
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-48.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.linkedin.com/*",
        "https://*.linkedin.com/*",
        "https://dev.writesmart.so/*",
        "https://app.writesmart.so/*",
        "https://beta.writesmart.so/*"
      ],
      "js": [
        "rollbar.min.js",
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle.chunk.css"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-32.png",
        "icon-16.png",
        "icon-48.png",
        "*.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}