You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manifest.json 328B

123456789101112131415161718
  1. {
  2. "manifest_version": 2,
  3. "name": "Wordle Extended Share",
  4. "version": "1.0",
  5. "description": "Includes the guesses in spoiler tags",
  6. "icons": {
  7. "48": "icon48.png"
  8. },
  9. "content_scripts": [
  10. {
  11. "matches": ["*://*.powerlanguage.co.uk/*", "http://localhost/*"],
  12. "js": ["wordle-share.js"]
  13. }
  14. ]
  15. }