Ambassify

Ambassify

Turn social media posts into community campaigns with only a few clicks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ambassify",
  "description": "Turn social media posts into community campaigns with only a few clicks.",
  "version": "1.1.3",
  "manifest_version": 3,
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "contextMenus",
    "cookies",
    "storage"
  ],
  "icons": {
    "128": "/images/ambassify.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "select-community/popup.html"
      ]
    }
  ],
  "action": {
    "default_popup": "manage-communities/popup.html"
  }
}