Fablerr — AI for Social Media

Fablerr — AI for Social Media

Fablerr is an AI Writing Assistant to Engage Effectively on Social Media.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fablerr — AI for Social Media",
  "version": "1.0.5",
  "manifest_version": 3,
  "description": "Fablerr is an AI Writing Assistant to Engage Effectively on Social Media.",
  "homepage_url": "https://fablerr.app",
  "icons": {
    "128": "icons/logo128.png"
  },
  "default_locale": "en",
  "action": {
    "default_icon": "icons/logo128.png",
    "default_popup": "src/popup/popup.html"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "src/background/service_worker.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "src/inject/injectMain.js"
      ],
      "world": "MAIN"
    }
  ]
}