IDriss

IDriss

IDriss drastically simplifies the way you send or receive crypto. IDriss is an open source extension that lets you use your email, phone number or @Twitter names instead of the long and user-unfriendly wallet addresses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "IDriss",
  "version": "1.0.7",
  "description": "Use emails, phone numbers or Twitter usernames instead of crypto wallet addresses.",
  "author": "IDriss",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "serviceWorker.js"
    ]
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "homepage_url": "https://www.idriss.xyz",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "148": "img/icon148.png"
  },
  "browser_action": {
    "default_popup": "standalone.html",
    "default_icon": "img/icon16bw.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}