WheresApp

WheresApp

Make your web whatsapp work friendly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WheresApp",
  "version": "0.0.7",
  "manifest_version": 2,
  "description": "Make your web whatsapp work friendly",
  "homepage_url": "https://github.com/alek5k",
  "icons": {
    "16": "icons/icons16.png",
    "48": "icons/icons48.png",
    "128": "icons/icons128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_page": "src/options/index.html",
  "page_action": {
    "default_icon": "icons/icons19.png",
    "default_title": "WheresApp",
    "default_popup": "src/page_action/page_action.html"
  },
  "permissions": [
    "https://web.whatsapp.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}