Emotes Everywhere

Emotes Everywhere

Twitch, BTTV & FFZ emotes of your choosing on any site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Emotes Everywhere",
  "version": "1.0.1",
  "description": "Twitch, BTTV & FFZ emotes of your choosing on any site",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tabs"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "./js/contextMenu.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./js/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "./js/popup.js",
    "./js/content.js"
  ]
}