aboutsummaryrefslogtreecommitdiffstats
path: root/docs/add-to-firefox.md
blob: 593d061704827fa0ec6fd6e0cb1275445cd0e905 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Add Custom Build to Firefox

Go to the url `about:debugging`.

Click the button `Load Temporary Add-On`.

Select the file `dist/firefox/manifest.json`.

You can optionally enable debugging, and click `Debug`, for a console window that logs all of Metamask's processes to a single console.

If you have problems debugging, try connecting to the IRC channel `#webextensions` on `irc.mozilla.org`.

For longer questions, use the StackOverfow tag `firefox-addons`.

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
{
  "name": "metamask-crx",
  "version": "0.0.0",
  "public": false,
  "private": true,
  "scripts": {
    "start": "npm run dev",
    "dev": "gulp dev --debug",
    "ui": "npm run test:flat:build:states && beefy ui-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./",
    "mock": "beefy mock-dev.js:bundle.js --live --open --index=./development/index.html --cwd ./",
    "watch": "mocha watch --recursive \"test/unit/**/*.js\"",
    "mascara": "METAMASK_DEBUG=true node ./mascara/example/server",
    "dist": "npm run dist:clear && npm install && gulp dist",
    "dist:clear": "rm -rf node_modules/eth-contract-metadata && rm -rf node_modules/eth-phishing-detect",
    "test": "npm run lint && npm run test:coverage && npm run test:integration",
    "test:unit": "METAMASK_ENV=test mocha --compilers js:babel-core/register --require test/helper.js --recursive \"test/unit/**/*.js\"",
    "test:single": "METAMASK_ENV=test mocha --require test/helper.js",
    "test:integration": "npm run test:flat && npm run test:mascara",
    "test:coverage": "nyc npm run test:unit && npm run test:coveralls-upload",
    "test:coveralls-upload": "if [ $COVERALLS_REPO_TOKEN ]; then nyc report --reporter=text-lcov | coveralls; fi",
    "test:flat": "npm run test:flat:build && karma start test/flat.conf.js",
    "test:flat:build": "npm run test:flat:build:ui && npm run test:flat:build:tests",
    "test:flat:build:tests": "node test/integration/index.js",
    "test:flat:build:states": "node development/genStates.js",
    "test:flat:build:ui": "npm run test:flat:build:states && browserify ./mock-dev.js -o ./development/bundle.js",
    "test:mascara": "npm run test:mascara:build && karma start test/mascara.conf.js",
    "test:mascara:build": "mkdir -p dist/mascara && npm run test:mascara:build:ui && npm run test:mascara:build:background && npm run test:mascara:build:tests",
    "test:mascara:build:ui": "browserify mascara/test/test-ui.js -o dist/mascara/ui.js",
    "test:mascara:build:background": "browserify mascara/src/background.js -o dist/mascara/background.js",
    "test:mascara:build:tests": "browserify test/integration/lib/first-time.js -o dist/mascara/tests.js",
    "lint": "gulp lint",
    "lint:fix": "gulp lint:fix",
    "disc": "gulp disc --debug",
    "announce": "node development/announcer.js",
    "generateNotice": "node notices/notice-generator.js",
    "deleteNotice": "node notices/notice-delete.js"
  },
  "browserify": {
    "transform": [
      [
        "babelify",
        {
          "presets": [
            "es2015",
            "stage-0"
          ]
        }
      ],
      "envify",
      "brfs"
    ]
  },
  "dependencies": {
    "async": "^2.5.0",
    "await-semaphore": "^0.1.1",
    "babel-runtime": "^6.23.0",
    "bluebird": "^3.5.0",
    "bn.js": "^4.11.7",
    "browserify-derequire": "^0.9.4",
    "classnames": "^2.2.5",
    "client-sw-ready-event": "^3.3.0",
    "clone": "^2.1.1",
    "copy-to-clipboard": "^3.0.8",
    "debounce": "^1.0.0",
    "deep-extend": "^0.5.0",
    "detect-node": "^2.0.3",
    "disc": "^1.3.2",
    "dnode": "^1.2.2",
    "end-of-stream": "^1.1.0",
    "ensnare": "^1.0.0",
    "eslint-plugin-react": "^7.4.0",
    "eth-bin-to-ops": "^1.0.1",
    "eth-block-tracker": "^2.2.0",
    "eth-contract-metadata": "^1.1.4",
    "eth-hd-keyring": "^1.2.1",
    "eth-json-rpc-filters": "^1.2.4",
    "eth-json-rpc-infura": "^1.0.2",
    "eth-keyring-controller": "^2.1.2",
    "eth-phishing-detect": "^1.1.4",
    "eth-query": "^2.1.2",
    "eth-sig-util": "^1.4.0",
    "eth-simple-keyring": "^1.2.0",
    "eth-token-tracker": "^1.1.4",
    "ethereumjs-tx": "^1.3.0",
    "ethereumjs-util": "github:ethereumjs/ethereumjs-util#ac5d0908536b447083ea422b435da27f26615de9",
    "ethereumjs-wallet": "^0.6.0",
    "etherscan-link": "^1.0.2",
    "ethjs-contract": "^0.1.9",
    "ethjs-ens": "^2.0.0",
    "ethjs-query": "^0.3.1",
    "express": "^4.15.5",
    "extension-link-enabler": "^1.0.0",
    "extensionizer": "^1.0.0",
    "fast-json-patch": "^2.0.4",
    "fast-levenshtein": "^2.0.6",
    "gulp": "github:gulpjs/gulp#4.0",
    "gulp-eslint": "^4.0.0",
    "hat": "0.0.3",
    "human-standard-token-abi": "^1.0.2",
    "idb-global": "^2.1.0",
    "identicon.js": "^2.3.1",
    "iframe": "^1.0.0",
    "iframe-stream": "^3.0.0",
    "inject-css": "^0.1.1",
    "jazzicon": "^1.2.0",
    "json-rpc-engine": "3.2.0",
    "json-rpc-middleware-stream": "^1.0.1",
    "lodash.debounce": "^4.0.8",
    "lodash.memoize": "^4.1.2",
    "lodash.shuffle": "^4.2.0",
    "lodash.uniqby": "^4.7.0",
    "loglevel": "^1.4.1",
    "metamascara": "^1.3.1",
    "metamask-logo": "^2.1.2",
    "mississippi": "^1.2.0",
    "mkdirp": "^0.5.1",
    "multiplex": "^6.7.0",
    "number-to-bn": "^1.7.0",
    "obj-multiplex": "^1.0.0",
    "obs-store": "^3.0.0",
    "once": "^1.3.3",
    "ping-pong-stream": "^1.0.0",
    "pojo-migrator": "^2.1.0",
    "polyfill-crypto.getrandomvalues": "^1.0.0",
    "post-message-stream": "^3.0.0",
    "promise-filter": "^1.1.0",
    "promise-to-callback": "^1.0.0",
    "pump": "^1.0.2",
    "pumpify": "^1.3.4",
    "qrcode-npm": "0.0.3",
    "react": "^15.6.2",
    "react-addons-css-transition-group": "^15.6.0",
    "react-dom": "^15.6.2",
    "react-hyperscript": "^3.0.0",
    "react-markdown": "^3.0.0",
    "react-redux": "^5.0.5",
    "react-select": "^1.0.0-rc.2",
    "react-simple-file-input": "^2.0.0",
    "react-tooltip-component": "^0.3.0",
    "react-trigger-change": "^1.0.2",
    "readable-stream": "^2.3.3",
    "recompose": "^0.25.0",
    "redux": "^3.0.5",
    "redux-logger": "^3.0.6",
    "redux-thunk": "^2.2.0",
    "request-promise": "^4.2.1",
    "sandwich-expando": "^1.1.3",
    "semaphore": "^1.0.5",
    "semver": "^5.4.1",
    "sw-stream": "^2.0.0",
    "textarea-caret": "^3.0.1",
    "through2": "^2.0.3",
    "valid-url": "^1.0.9",
    "vreme": "^3.0.2",
    "web3": "^0.20.1",
    "web3-provider-engine": "^13.4.0",
    "web3-stream-provider": "^3.0.1",
    "xtend": "^4.0.1"
  },
  "devDependencies": {
    "babel-core": "^6.24.1",
    "babel-eslint": "^8.0.0",
    "babel-plugin-transform-async-to-generator": "^6.24.1",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-0": "^6.24.1",
    "babel-register": "^6.7.2",
    "babelify": "^8.0.0",
    "beefy": "^2.1.5",
    "brfs": "^1.4.3",
    "browserify": "^14.4.0",
    "chai": "^4.1.0",
    "coveralls": "^3.0.0",
    "deep-freeze-strict": "^1.1.1",
    "del": "^3.0.0",
    "envify": "^4.0.0",
    "enzyme": "^3.2.0",
    "eslint-plugin-chai": "0.0.1",
    "eslint-plugin-mocha": "^4.9.0",
    "eth-json-rpc-middleware": "^1.2.7",
    "fs-promise": "^2.0.3",
    "gulp": "github:gulpjs/gulp#4.0",
    "gulp-if": "^2.0.1",
    "gulp-json-editor": "^2.2.1",
    "gulp-livereload": "^3.8.1",
    "gulp-replace": "^0.6.1",
    "gulp-sourcemaps": "^2.6.0",
    "gulp-util": "^3.0.7",
    "gulp-watch": "^4.3.5",
    "gulp-zip": "^4.0.0",
    "isomorphic-fetch": "^2.2.1",
    "jsdom": "^11.1.0",
    "jsdom-global": "^3.0.2",
    "jshint-stylish": "~2.2.1",
    "karma": "^1.7.1",
    "karma-chrome-launcher": "^2.2.0",
    "karma-cli": "^1.0.1",
    "karma-firefox-launcher": "^1.0.1",
    "karma-qunit": "^1.2.1",
    "lodash.assign": "^4.0.6",
    "mocha": "^4.0.0",
    "mocha-eslint": "^4.0.0",
    "mocha-jsdom": "^1.1.0",
    "mocha-sinon": "^2.0.0",
    "nock": "^9.0.14",
    "nyc": "^11.0.3",
    "open": "0.0.5",
    "prompt": "^1.0.0",
    "qs": "^6.2.0",
    "qunitjs": "^2.4.1",
    "react-addons-test-utils": "^15.5.1",
    "react-test-renderer": "^15.6.2",
    "react-testutils-additions": "^15.2.0",
    "sinon": "^4.0.0",
    "tape": "^4.5.1",
    "testem": "^1.10.3",
    "uglifyify": "^4.0.2",