diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-01-29 16:46:15 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-01-29 16:46:15 +0100 |
commit | 34ea3829e7cb435a4357b43fcfff514fdd39083e (patch) | |
tree | 8293b7f4a9e5d9e45341609595c754ff115a2771 /yomichan-user/readme.md | |
parent | ae34a31fd4beb438118f6129e867b6f3cf2ba602 (diff) |
separate yomichan into user.js patch and sentence-export plugin
Diffstat (limited to 'yomichan-user/readme.md')
-rw-r--r-- | yomichan-user/readme.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/yomichan-user/readme.md b/yomichan-user/readme.md new file mode 100644 index 0000000..e82bb00 --- /dev/null +++ b/yomichan-user/readme.md @@ -0,0 +1,32 @@ +# yomichan stuff + +## custom css + +this is just a custom theme, and can be easily installed by pasting the +contents of [custom.css](custom.css) into yomichan's settings. + +## sentence export + +this patches the yomichan plugin files to add an export button to the search +bar for copying a sentence with furigana into my custom anki card template. + + + + +### set-up + +to download the latest yomichan version and patch it, leaving all files exposed +for later updating (unpacked extension), run the following command: + +``` +make patch +``` + +to patch yomichan and convert it back to a zip (packed extension, non-signed, +for use with kiwi browser), run: + +``` +make yomichan-chrome-patched.zip +``` + +if you want to update the patch or zip, replace `make` with `make -B`. |