Examine source code of Readsy

Inspect and view changes in Readsy 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": "Readsy",
  "description": "A tool to help users read text more easily by highlighting key parts of speech",
  "version": "1.0.5",
  "icons": {
    "16": "/images/logo_16.png",
    "48": "/images/logo_48.png",
    "128": "/images/logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo_16.png",
      "48": "/images/logo_48.png",
      "128": "/images/logo_128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://www.readsyapp.com/*",
      "http://readsyapp.com/*",
      "https://readsyapp.com/*",
      "https://readsy.app/*",
      "https://www.readsy.app/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "/images/logo_pic.png",
        "/images/cog.svg",
        "/images/xcircle.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}