Grumpy Flag

Grumpy Flag

Shows the country name when hovering a flag emoji on facebook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Grumpy Flag",
  "version": "0.01",
  "description": "Shows the country name when hovering a flag emoji on facebook",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}