Merge pull request #16601 from Rob--W/crx-maintained-again

Revert "Temporarily stop listing the official Chrome extension in the main README"
This commit is contained in:
Tim van der Meij 2023-07-01 12:54:45 +02:00 committed by GitHub
commit 94015c71ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
+ 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
Chrome, go to `Tools > Extension` and load the (unpackaged) extension from the
directory `build/chromium`.

View File

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