Examine source code of I love sentences!

Inspect and view changes in I love sentences! 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": "I love sentences!",
  "version": "1.2.7",
  "permissions": [
    "clipboardRead",
    "storage",
    "activeTab",
    "background",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://chatgpt.com/*",
        "https://www.google.com/search?*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "popup.css"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icon_crayon_16.png",
      "48": "/images/icon_crayon_48.png",
      "128": "/images/icon_crayon_128.png"
    }
  },
  "icons": {
    "16": "/images/icon_crayon_16.png",
    "48": "/images/icon_crayon_48.png",
    "128": "/images/icon_crayon_128.png"
  }
}