Examine source code of LingoDay

Inspect and view changes in LingoDay 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
{
  "manifest_version": 2,
  "version": "1.5",
  "name": "LingoDay - twórz fiszki z całego internetu",
  "short_name": "LingoDay",
  "description": "Szybkie tłumaczenie i dodawanie fiszek jednym kliknięciem.",
  "author": "LingoDay Sp. z o. o.",
  "homepage_url": "https://lingoday.pl",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "lingoday@example.com",
      "strict_min_version": "42.0"
    }
  },
  "icons": {
    "16": "./image/icon.png",
    "32": "./image/icon.png",
    "48": "./image/icon.png",
    "128": "./image/icon.png"
  },
  "permissions": [
    "storage",
    "https://*.lingoday.pl/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "image/icon.svg",
    "image/check.svg"
  ]
}