Skribbl.io Letter Counter

Skribbl.io Letter Counter

Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Skribbl.io Letter Counter",
  "description": "Made by Magaz. This extension shows the number of the letter or letters to guess in the skribbl.io game. Made for lazy people. ",
  "version": "1.1",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://skribbl.io/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}