Louie - Stay In Touch

Louie - Stay In Touch

Louie helps you stay in touch with your friends on Whatsapp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Louie - Stay In Touch",
  "short_name": "Louie",
  "description": "Louie helps you stay in touch with your friends on Whatsapp",
  "version": "2.0.5",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "images/Color.png"
  },
  "browser_action": {
    "default_icon": "images/Color.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "core_injection.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "core/UI.js",
        "lib/tingle/tingle.min.js",
        "lib/drop/drop.js",
        "lib/sweetalert/sweetalert.min.js",
        "lib/native-toast/native-toast.js"
      ],
      "css": [
        "styles.css",
        "lib/tingle/tingle.min.css",
        "lib/drop/css/drop-theme-basic.css",
        "lib/sweetalert/sweetalert.css",
        "lib/native-toast/native-toast.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "lib/tingle/tingle.min.js",
    "lib/drop/drop.js",
    "lib/sweetalert/sweetalert.min.js",
    "lib/native-toast/native-toast.js",
    "core/*",
    "images/*"
  ]
}