Shatd

Shatd

This is Shatd, the Secret chatting app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shatd",
  "description": "This is Shatd, the Secret chatting app",
  "version": "0.0.1",
  "permissions": [
    "background",
    "notifications",
    "http://*/"
  ],
  "background": {
    "page": "views/background.html"
  },
  "browser_action": {
    "default_icon": {
      "128": "icon_128.png"
    },
    "default_title": "Shatd",
    "default_popup": "app/index.html"
  },
  "omnibox": {
    "keyword": "sh"
  },
  "web_accessible_resources": [
    "images/icon1.png",
    "images/shatd-mini.png",
    "views/shatd-mini.html",
    "app/images/checked-btn.png",
    "app/images/unchecked-btn.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/shatd-mini.css"
      ],
      "js": [
        "modules/js/jquery-2.2.0.min.js",
        "js/shatd-mini.js"
      ]
    }
  ],
  "manifest_version": 2
}