A browser extension thats aims to parse most japanese text in the browser using JPDB and mining into JPDB or Anki decks, with better styling for subtitles.
I didn't find its UI very appealing and it had some quality-of-life features missing.
ASB-Player's subtitles look ugly and it doesn't offer the customization I was looking for. I've kept jpd-breader's ability to mine any page, but added much nicer styling for video players, specifically.
With this extension, you can easily pick and choose mining decks on the fly.
See the Added Features section for other changes.
- Add sentences + translations when adding words to deck
- Customizable subtitle colorization based on word's state using nice, user friendly html color pickers
- Choose which buttons you want to appear in the tooltip
- Customizable button colorization
- Choose which deck you want to add to on the fly
- Auto translate sentence when adding word to deck or manually specify with "Add+" button [todo]
A browser extension thats aims to parse most japanese text in the browser using JPDB and mining into JPDB or Anki decks.
This is a fork of the JPDB Web Reader extension
Thanks to Max and the JPDB Discord for making the original extension and fixing some issues along the way! Sadly, manifest 3 came along and thus the original is no longer working.
- Currently only chromium-based browsers on windows are supported
- Mobile support is currently not given - i do not own any android devices
- Bunpro is currently not supported
- Touchscreen support is currently missing
- The forq function of jpdb is currently missing
- Sentences are currently not set
- An import and export of settings is currently missing
- Support for youtube subtitles has been removed - please use this extension together with asbplayer
Some web apps and sites require special attention to work properly, therefore they parse automatically on certain triggers.
| App | URLs |
|---|---|
| ッツ Reader | reader.ttsu.app, ttu-ebook.web.app |
| Texthooker pages | anacreondjt texthooker, learnjapanese.moe texthooker, exSTATic tracker, renji-xd texthooker |
| Mokuro | reader.mokuro.app |
| Mokuro (Legacy) | Mokuro: IMPORTANT: File path must contain mokuro, and file name must end in .html |
| Readwok | app.readwok.com |
| Wikipedia | ja.wikipedia.org |
| asbplayer | github.com/killergerbah/asbplayer |
| Youtube comments | youtube.com |
- Download the latest
.zipfile from the releases page - Unpack the zip file in a location of your choosing
- Open up your browser and navigate to
chrome://extensions/ - Check the
Developer modeswitch at the top right of your window - Click the
Load unpackedbutton at the top left - In the file picker dialog, navigate to the folder you unpacked earlier. You should see a file called
manifest.jsoninside the folder - Click select/open/choose to exit the dialog and load the extension
- Continue with the Setup section
The extension will be uploaded to the chrome web store once its in a more mature state!
Upon installation the settings page will open. You can also find it by clicking on the reader icon (読) in the browser menu bar. It might be hidden behind the extension overflow menu, which looks like a little puzzle piece (🧩).
Here you will need to enter your jpdb API key. It can be found at the very bottom of the jpdb settings page. You can also change various hotkeys
You can use the reader on any website. Just select some text, right click, and choose the "Parse ... with jpdb" option. Alternatively use the shortcut (Alt+P) or the extension menu at the top right corner.
Words will be colored according to their state (known, new, etc.). Hover over words while holding Shift to see their meaning, and to mine or review them.
Customization is currently done with custom CSS, because its the most simple way to offer a flexible framework.
Here are some common customizations you might want. Feel free to use multiple of them, and modify them to your liking.
Don't color words:
.jpdb-word { color: inherit; /* inherit color from the website instead of using a custom color */ }Only color new words:
.jpdb-word { color: inherit; }
.jpdb-word.new { color: rgb(75, 141, 255); }
.jpdb-word.not-in-deck { color: rgb(126, 173, 255); }Show an underline rather than changing the text color:
.jpdb-word.new {
color: inherit;
text-decoration: underline 3px rgb(75, 141, 255);
}Hide all jpdb furigana:
.jpdb-furi { display: none; }Hide jpdb furigana only for some classes of words:
.jpdb-word:is(.never-forget, .known, .due, .failed) .jpdb-furi { display: none; }Only show jpdb furigana while hovering:
.jpdb-word:not(:hover) .jpdb-furi { visibility: hidden; }Mark misparsed words
.jpdb-word.misparsed {
color: rgb(255, 0, 0);
background-color: lightgray;
}Disable misparsed word coloring
.jpdb-word.misparsed {
color: unset;
background-color: unset;
}Notes if you aren't super familiar with CSS:
- CSS supports many color formats, like colornames (
green), hex#a2ff0eorrgb(126, 230, 17). Pick whichever you find most convenient. - Selectors with more classes are higher priority. For example,
.jpdb-word.newwill overwrite.jpdb-word. - For selectors with the same number of classes, lower/later lines have higher priority.
- You can add
!importantafter a property (likecolor: red !important;) to overwrite the priority system. - You can use
:is(.class, .class)to select any element that has at least one of those classes. For example,.jpdb-word:is(.due, .failed)selects all words that are due or failed. - You can use
:not(.class)to select any element that does not have that class. For example,.jpdb-word:not(.new)selects all words that are not new.
List of classes:
.jpdb-word- Any part of the text that was run through the jpdb parser.jpdb-furi- Furigana added via jpdb. Note that these might not necessarily be correct, as they are machine-generated..unparsed- Parts where jpdb could not identify any words.not-in-deck- Words that were not in any of your decks. Note that these are not necessarily new, they might have been reviewed before. jpdb does not track the state of words that are not in any decks..locked- Locked words.redundant- Redundant words.new- New words.learning- Learning words.known- Known words.never-forget- Words that are marked as never forget, or are part of a deck that is marked never forget..due- Due words (that is, words that are in theDuestate. If you have failed your last review, the words will beFailedinstead!).failed- Failed words.suspended- Suspended words (for example, through the "Suspend words outside of a given top most common words" feature).blacklisted- Blacklisted words (either individually, or through settings like "Blacklist particles", "Blacklist katakana loanwords", etc.).misparsed- Words that are clearly mistaken by jpdb. Only works if the source already has furigana.
You can run the following command to build the extension locally:
$ npm install
$ npm run buildThe resulting files will be located in the anki-jpdb.reader-extension/ folder
For development, you can also run the build in watch mode:
$ npm install
$ npm run watchThis will continuously rebuild the source code as it changes, and place the output in the anki-jpdb.reader-extension/ folder.
It can be loaded as an unpacked extension from there.
Please remember to wait until building is done, and reload the extension on the "manage extensions" page before testing your changes.
Reloading is not required for the browser popup (top right) or the settings page.
Also, please look at the Contributing section if you plan on contributing your changes.
Issues with feedback or ideas for new features are very welcome. You can also message me on the JPDB and Refold Japanese Discord servers (@chinokusari).
The following commands may be of interest to you:
npm run lint: Checks your code for formatting issues, linter warnings and type errors. The CI also runs this, so your pull request will only be accepted if it passes. You can use eslint ignore comments if you get false positives, but leave a comment explaining why you think the error is false and safe to ignore.npm run lint:fix: Reformats your code, as well as fixing any fixable lint issues. Note, if your editor has aprettierplugin, installing that and turning on "format on save" will be more convenient.npm run build: Compiles the code, putting the compiled code intoanki-jpdb.reader-extension/npm run watch: Automatically recompiles code when it changes, putting the output intoanki-jpdb.reader-extension/. Using this is recommended during development.



