Slacky - Memes as a Service

Slacky - Memes as a Service

Create all the memes directly from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Slacky - Memes as a Service",
  "description": "Create all the memes directly from your browser",
  "version": "0.1.1",
  "icons": {
    "16": "slacky-16.png",
    "32": "slacky-32.png",
    "64": "slacky-64.png",
    "128": "slacky-128.png"
  },
  "browser_action": {
    "default_icon": "slacky-64.png",
    "default_popup": "panel.html"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "utils.js",
      "index.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "jquery.js",
        "utils.js",
        "window.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*",
    "storage",
    "clipboardWrite"
  ],
  "web_accessible_resources": [
    "businesscat.png",
    "loading.gif"
  ]
}