Revert "Temporarily stop listing the official Chrome extension in the main README"

This reverts commit afabbc28c5.
This commit is contained in:
Rob Wu 2023-06-25 15:21:03 +02:00
parent c4a61a7692
commit 9aedf00ffe
2 changed files with 7 additions and 1 deletions

View File

@ -38,6 +38,8 @@ PDF.js is built into version 19+ of Firefox.
#### Chrome #### Chrome
+ The official extension for Chrome can be installed from the [Chrome Web Store](https://chrome.google.com/webstore/detail/pdf-viewer/oemmndcbldboiebfnladdacbdfmadadm).
*This extension is maintained by [@Rob--W](https://github.com/Rob--W).*
+ Build Your Own - Get the code as explained below and issue `gulp chromium`. Then open + Build Your Own - Get the code as explained below and issue `gulp chromium`. Then open
Chrome, go to `Tools > Extension` and load the (unpackaged) extension from the Chrome, go to `Tools > Extension` and load the (unpackaged) extension from the
directory `build/chromium`. directory `build/chromium`.

View File

@ -2367,5 +2367,9 @@ gulp.task("externaltest", function (done) {
gulp.task( gulp.task(
"ci-test", "ci-test",
gulp.series(gulp.parallel("lint", "externaltest", "unittestcli"), "typestest") gulp.series(
gulp.parallel("lint", "externaltest", "unittestcli"),
"lint-chromium",
"typestest"
)
); );