JoyReading: Ai-powered PDF reading extension

JoyReading: Ai-powered PDF reading extension

Joy-Reading is to detect the location of tables and formulas in PDF document and help users to quickly locate them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "JoyReading: Ai-powered PDF reading extension",
  "description": "Joy-Reading is to detect the location of tables and formulas in PDF document and help users to quickly locate them.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/icon/logo_color.png"
  },
  "background": {
    "service_worker": "/js/dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "file://*/*",
        "file:///*"
      ],
      "js": [
        "/js/dist/content_script.js"
      ],
      "css": [
        "/css/contentcss.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/js/dist/inject.js",
        "/TableModel/*",
        "/MathModel/*",
        "/testimg/*"
      ],
      "matches": [
        "<all_urls>",
        "file:///*",
        "file://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}