Bogar.AI Anywhere

Bogar.AI Anywhere

Easy way to create content with Bogar.AI Extension & create engaging comment on single click on LinkedIn & Twitter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bogar.AI Anywhere",
  "version": "1.1",
  "description": "Easy way to create content with Bogar.AI Extension & create engaging comment on single click on LinkedIn & Twitter",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "action": {
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    },
    {
      "matches": [
        "*://www.linkedin.com/*"
      ],
      "js": [
        "js/licontent.js"
      ],
      "css": [
        "css/tailwind.css"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/fbcontent.js"
      ],
      "css": [
        "css/tailwind.css"
      ]
    },
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "js/twcontent.js"
      ],
      "css": [
        "css/tailwind.css"
      ]
    },
    {
      "matches": [
        "*://www.instagram.com/*"
      ],
      "js": [
        "js/instacontent.js"
      ],
      "css": [
        "css/tailwind.css"
      ]
    }
  ],
  "permissions": [
    "sidePanel",
    "storage",
    "activeTab"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  }
}