fluany

fluany

Fluany is a flashcards platform that helps you memorize and study anything. Quickly and easily while you do your work.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Fluany is a flashcards platform that helps you memorize and study anything. Quickly and easily while you do your work.",
  "version": "3.2.0",
  "manifest_version": 3,
  "name": "fluany",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "tabs",
    "alarms",
    "storage",
    "scripting",
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "host_permissions": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ]
}