7 Cups of Spam

7 Cups of Spam

This extension sends tons of love messages in private messages with a click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "7 Cups of Spam",
  "description": "This extension sends tons of love messages in private messages with a click of a button!",
  "version": "1.0.1",
  "permissions": [
    "notifications",
    "unlimitedStorage",
    "tabs",
    "idle",
    "management",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "contextMenus",
    "chrome://favicon/",
    "clipboardWrite",
    "<all_urls>",
    "http://*.*/*",
    "https://*.*/*"
  ],
  "short_name": "7 Spam",
  "optional_permissions": [
    "contentSettings",
    "downloads"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "spam.js"
      ],
      "matches": [
        "file://*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ]
}