Readefine - Reword the Internet

Readefine - Reword the Internet

Turn confusing jargon into simple English, or just give the internet a fresh spin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Readefine - Reword the Internet",
  "version": "5.0.0",
  "permissions": [
    "storage"
  ],
  "description": "Turn confusing jargon into simple English, or just give the internet a fresh spin.",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "assets/popper.min.js",
        "assets/readefine_tooltip-bundle.umd.min.js",
        "js/content_main.js"
      ],
      "css": [
        "css/content_main.css"
      ],
      "exclude_matches": [
        "https://app.readefine.ai/*",
        "https://staging.readefine.ai/*",
        "http://127.0.0.1:3000/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://app.readefine.ai/*",
        "https://staging.readefine.ai/*"
      ],
      "js": [
        "js/check_login_status_cs.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.readefine.ai/*",
      "https://staging.readefine.ai/*",
      "http://127.0.0.1:3000/*"
    ]
  },
  "homepage_url": "https://app.readefine.ai",
  "action": {
    "default_icon": "assets/exticon.png",
    "default_popup": "/popup/build/index.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "assets/exticon.png",
    "48": "assets/exticon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/testicon.png",
        "assets/icon.png",
        "assets/index.css",
        "assets/google_fonts.woff2",
        "assets/Roboto-Light.ttf",
        "assets/a_roboto.woff2",
        "popup/build/index.html",
        "css/content_main.css",
        "select-to-readefine/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}