Wordle Extended Share

Adds an additional share button that includes the guesses in spoiler tags.
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,
  "name": "Wordle Extended Share",
  "version": "1.0",
  "description": "Includes the guesses in spoiler tags",
  "icons": {
    "48": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.powerlanguage.co.uk/*",
        "http://localhost/*"
      ],
      "js": [
        "wordle-share.js"
      ]
    }
  ]
}