FOURwal - 4THTECH wallet

FOURwal - 4THTECH wallet

Chrome and Firefox extension for interacting with 4thtech platform.

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__",
  "homepage_url": "https://www.the4thpillar.com",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "downloads"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "https://the4thpillar.com/*",
        "https://*.the4thpillar.com/*",
        "https://4thtech.io/*",
        "https://*.4thtech.io/*",
        "http://127.0.0.1/*",
        "https://127.0.0.1/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self'  'wasm-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "web_accessible_resources": [
    "js/injected.js"
  ],
  "version": "1.1.6"
}