Username Generator

Username Generator

Generate Username

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "UsernameGenerator",
  "version": "1.0",
  "description": "Adds a browser action icon to the toolbar. Click the button to choose a beast. The active tab's body content is then replaced with a picture of the chosen beast. See https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Examples#beastify",
  "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/beastify",
  "icons": {
    "48": "icon/icon.png"
  },
  "browser_action": {
    "default_icon": "icon/icon.png",
    "default_title": "UsernameGenerator",
    "default_popup": "popup/username_view.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}