More About Me

More About Me

See additional info about members in facebook groups, and also add your own info. A small icon will apear next to their name.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "More About Me",
  "version": "0.0.1.4",
  "description": "See additional info about members in facebook groups, and also add your own info. A small icon will apear next to their name.",
  "icons": {
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "page": "background/index.html"
  },
  "permissions": [
    "storage",
    "https://moreaboutme.herokuapp.com/*",
    "*://facebook.com/groups/*",
    "*://www.facebook.com/groups/*"
  ],
  "web_accessible_resources": [
    "images/*.*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/groups/*"
      ],
      "js": [],
      "css": [
        "style.css"
      ]
    }
  ]
}