Svgmoji

Svgmoji

Creates a link to an image for the emoji in the selection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "notifications",
    "storage",
    "https://raw.githubusercontent.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "./assets/images/logo-16.png",
    "128": "./assets/images/logo-128.png"
  },
  "incognito": "spanning",
  "name": "Svgmoji",
  "version": "1.7.2",
  "author": "Said Magomedov <[email protected]>",
  "description": "Creates a link to an image for the emoji in the selection"
}