Skip to content

Commit

Permalink
changes to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
r0hit-gupta committed Jun 8, 2017
1 parent e4ba257 commit b4b4d28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@ Building and Using Beta Versions

* run `npm install`

* run `gulp group` or `gulp groupFirefox` or `gulp groupChrome` or `gulp groupSafari`
* run `gulp group` or `gulp groupFirefox` or `gulp groupChrome` or `gulp groupSafari` or `gulp groupWebext`

* add flag `--debug` to keep all debug statements and comments.

* for chrome, load the unpacked extension from the Build/Chrome folder

* for firefox, run `jpm runFirefox` and use the -b flag to point to a non extension verifying version of Firefox like the Developer Edition

* for WebExtension, run `web-ext run -f firefoxdeveloperedition` to use this extension in Firefox(Developer Edition).

* for safari, load folder with extension `.safariextension` into _Extension Builder_ `Develop -> Show Extension Builder`. To show _Develop_ menu go to `Safari -> Preferences -> Advanced`. Change extension metadata as required from the _Extension Builder_. To package the extension for distribution, get an extension certificate from Apple.

Licenses
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ gulp.task('groupSafari', function(done) {
});
});

gulp.task('group', ['groupChrome', 'groupFirefox', 'groupSafari']);
gulp.task('group', ['groupChrome', 'groupFirefox', 'groupSafari', 'groupWebext']);

gulp.task('runFirefox', ['groupFirefox'], function(done) {

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"npm": "^5.0.1",
"phantomjs-prebuilt": "^2.1.7",
"run-sequence": "1.2.2",
"web-ext": "^1.9.1",
"yargs": "^4.8.1"
}
}

0 comments on commit b4b4d28

Please sign in to comment.