Github Colon Emoji

Github Colon Emoji

Allows you to press enter after a colon without adding an emoji on Github

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Github Colon Emoji",
  "description": "Allows you to press enter after a colon without adding an emoji on Github",
  "version": "0.1.2",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "remove_colon.js"
  ]
}