GIF Stickers

GIF Stickers

Emoji GIFs collection for stickers. Find and send emoji anywhere. Automatic paste GIF to chat's text field. (Uses huge library…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GIF Stickers",
  "description": "",
  "version": "1.1",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_popup": "stickers.html",
    "default_icon": "19.png"
  },
  "icons": {
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "short_name": "GIF-Stickers",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}