From 9aedf00ffe86a4e63131934abc9af0891f1d06ca Mon Sep 17 00:00:00 2001 From: Rob Wu Date: Sun, 25 Jun 2023 15:21:03 +0200 Subject: [PATCH] Revert "Temporarily stop listing the official Chrome extension in the main README" This reverts commit afabbc28c52ff74fa8ddca5b36c2e005094415e1. --- README.md | 2 ++ gulpfile.js | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 287ae53ea..e77b8e94d 100644 --- a/README.md +++ b/README.md @@ -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`. diff --git a/gulpfile.js b/gulpfile.js index a4dac1710..0f8ed1471 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2367,5 +2367,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" + ) );