Spamless Beta

Spamless Beta

This is Spamless Beta extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spamless Beta",
  "short_name": "Spamless Beta Extension",
  "description": "This is Spamless Beta extension.",
  "version": "1.0.7",
  "minimum_chrome_version": "30",
  "browser_action": {
    "default_icon": {
      "16": "icons/spamlessIcon16.png",
      "32": "icons/spamlessIcon32.png",
      "48": "icons/spamlessIcon48.png",
      "128": "icons/spamlessIcon128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "identity",
    "tabs",
    "<all_urls>",
    "activeTab",
    "notifications"
  ],
  "oauth2": {
    "client_id": "220138599621-lfgafa313ufas8lil2oc5ft023tsftpf.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email",
      "openid",
      "https://mail.google.com/",
      "https://www.googleapis.com/auth/gmail.modify",
      "https://www.googleapis.com/auth/gmail.labels",
      "https://www.googleapis.com/auth/gmail.settings.basic"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.pusher.com; object-src 'self'",
  "icons": {
    "16": "icons/spamlessIcon16.png",
    "32": "icons/spamlessIcon32.png",
    "48": "icons/spamlessIcon48.png",
    "128": "icons/spamlessIcon128.png"
  },
  "background": {
    "scripts": [
      "js/lib/jquery-3.3.1.min.js",
      "js/lib/underscore.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/checkGmail.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/spamlessIcon128.png",
    "icons/spamlessIcon32.png",
    "icons/spamlessIcon48.png",
    "icons/spamlessIcon16.png"
  ]
}