Gitmoji Browser Extension

Gitmoji Browser Extension

The Gitmoji extension to easily search and copy gitmojis 😜

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Gitmoji Browser Extension",
  "version": "1.7.1",
  "description": "The Gitmoji extension to easily search and copy gitmojis 😜",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "popup-icon.png"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+G"
      },
      "description": "Open the gitmoji popup"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/pull/*",
        "https://gitlab.com/*/*/-/merge_requests/*"
      ],
      "js": [
        "injectMergeGitmoji.js"
      ]
    }
  ]
}