RANDUS.ORG – Random Person Generator and Temporary Mail

RANDUS.ORG – Random Person Generator and Temporary Mail

Creation of random personalities with temporary email and auto-completion of registration and authorization forms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.5.1",
  "default_locale": "ru",
  "description": "__MSG_extDescription__",
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/favicon.png",
      "24": "images/favicon.png",
      "32": "images/favicon.png"
    }
  },
  "icons": {
    "16": "images/favicon-16.png",
    "48": "images/favicon-48.png",
    "128": "images/favicon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/helpers.js",
        "js/fill.js",
        "js/inject.js"
      ]
    }
  ]
}