Office Ink - Comment and Post with AI

Office Ink - Comment and Post with AI

Write personalised and meaningful comments and posts in clicks on Linkedin™ with GPT-4 AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Office Ink - Comment and Post with AI",
  "version": "3.0.2",
  "description": "Write personalised and meaningful comments and posts in clicks on Linkedin™ with GPT-4 AI",
  "action": {
    "default_popup": "index.html",
    "default_icon": "icon-popup.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "/static/js/background.js"
  },
  "host_permissions": [
    "http://localhost:3000/",
    "http://localhost:5000/",
    "https://backend.officeink.live/",
    "http://backend.officeink.live/",
    "https://www.officeink.live/"
  ],
  "icons": {
    "128": "icon-342.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*/*",
      "https://www.officeink.live/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.linkedin.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "/static/js/content.js",
        "/static/js/background.js",
        "/static/js/main.js"
      ]
    },
    {
      "matches": [
        "https://www.officeink.live/*"
      ],
      "js": [
        "/static/js/background.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-342.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}