Examine source code of The Writer's WingMan

Inspect and view changes in The Writer's WingMan 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": "The Writer's WingMan",
  "description": "Make your writing as beautiful as you are",
  "version": "1.0.0",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon32.png",
        "fonts/inter-bold.ttf",
        "fonts/inter-light.ttf",
        "fonts/inter-regular.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/font-awesome.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/index.css"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "32": "images/icon48.png"
    },
    "default_title": "The Writer's WingMan",
    "default_popup": "popup.html"
  }
}