Meme Maker

Meme Maker

Add meme text to any image and share it to Imgur

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meme Maker",
  "version": "0.1.202",
  "manifest_version": 2,
  "description": "Add meme text to any image and share it to Imgur",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/chromereload.js",
      "scripts/background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "http://*/",
    "https://*/",
    "*://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "scripts/controller/app.js",
    "scripts/components/editor.js",
    "scripts/vendor/*.js",
    "scripts/vendor/*.map",
    "styles/*.css",
    "*.html",
    "fonts/impactreg.eot",
    "fonts/impactreg.ttf",
    "fonts/impactreg.woff"
  ]
}