DISRUPTIVEwallet - TESTDOGE

DISRUPTIVEwallet in the browser. Send and receive testnet Dogecoin instantly on any web page. You keep your keys.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DISRUPTIVEwallet - TESTDOGE",
  "author": "Janislav Malahov",
  "description": "DISRUPTIVEwallet in the browser. Send and receive testnet Dogecoin instantly on any web page. You keep your keys.",
  "version": "0.9.4",
  "icons": {
    "16": "data/doge16.png",
    "48": "data/doge48.png",
    "128": "data/doge128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "permissions": [
    "contextMenus",
    "activeTab",
    "<all_urls>",
    "storage",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "data/js/libs/jquery.min.js",
        "data/js/libs/cryptojs.min.js",
        "data/js/libs/bitcoinjs-lib.min.js",
        "data/js/util.js",
        "data/js/preferences.js",
        "data/js/currency-manager.js",
        "data/js/wallet.js",
        "data/js/paypopup.js",
        "data/js/hoverpopup.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "data/js/background.js"
    ]
  },
  "web_accessible_resources": [
    "data/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "data/doge19.png",
      "38": "data/doge38.png"
    },
    "default_title": "DISRUPTIVEwallet - TESTDOGE",
    "default_popup": "data/index.html"
  }
}