ASCIImoji

ASCIImoji

Asciify ALL the websites!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ASCIImoji",
  "description": "Asciify ALL the websites!",
  "version": "1.6.1",
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/asciimoji.jquery.js",
        "js/script.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-2.1.1.min.js",
      "js/asciimoji.js",
      "js/background.js"
    ]
  },
  "options_page": "options/index.html"
}