Examine source code of Apprendr | French Learning Assistant

Inspect and view changes in Apprendr | French Learning Assistant source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Apprendr | French Learning Assistant",
  "version": "1.0",
  "description": "Learn French by selecting text for translation and pronunciation",
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://*/*",
    "http://0.0.0.0:8000/*",
    "http://localhost:8000/*",
    "https://apprendr-backend.onrender.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "panel.html",
        "panel.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}