Make Crypto Easier

Make Crypto Easier

This extension was created to facilitate the purchase and resale of cryptocurrencies, on some of the best known platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Make Crypto Easier",
  "description": "This extension was created to facilitate the purchase and resale of cryptocurrencies, on some of the best known platforms.",
  "version": "1.0",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "alarms",
    "contextMenus",
    "nativeMessaging",
    "storage",
    "activeTab"
  ],
  "background": {
    "persistent": false,
    "page": "back/background.html"
  },
  "content_scripts": [
    {
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    }
  }
}