PostAba || Build your professional brand

PostAba || Build your professional brand

Build your professional brand on auto-pilot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PostAba || Build your professional brand",
  "version": "1.0.2",
  "description": "Build your professional brand on auto-pilot",
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {},
  "chrome_url_overrides": {},
  "icons": {
    "128": "favicon.png"
  },
  "permissions": [
    "tabs",
    "identity",
    "identity.email",
    "cookies"
  ],
  "host_permissions": [
    "https://app.postaba.com/",
    "https://api.postaba.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js",
        "moment.min.js"
      ],
      "css": [
        "contentStyle.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentStyle.css",
        "favicon.png",
        "postaba-character.jpeg",
        "alarm-clock.png",
        "linkedin-button.png",
        "logo.svg",
        "linkedin-post-preview-bottom.png",
        "no-user-icon.svg",
        "assets/*.png",
        "fonts/*",
        "moment.min.js",
        "linkedin-likes.svg"
      ],
      "matches": [
        "https://*/*",
        "http://*/*",
        "<all_urls>"
      ]
    }
  ]
}