Skip to content

Commit

Permalink
Merge pull request #166 from vict0rsch/ff-keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
vict0rsch authored May 19, 2023
2 parents e00b571 + 8bb5778 commit e88d8f0
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 12 deletions.
10 changes: 6 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

[![](https://img.shields.io/chrome-web-store/stars/hmebhknlgddhfbbdhgplnillngljgmdi)](https://chrome.google.com/webstore/detail/paper-memory/hmebhknlgddhfbbdhgplnillngljgmdi)
[![](https://img.shields.io/badge/buy%20me-a%20coffee%20%E2%98%95%EF%B8%8F-FFDD03)](https://www.buymeacoffee.com/vict0rsch)
[![](https://img.shields.io/badge/Source%20%5BWIP%5D-v0.5.10-important)](https://github.com/vict0rsch/PaperMemory)
[![](https://img.shields.io/badge/Source%20%5BWIP%5D-v0.5.11-important)](https://github.com/vict0rsch/PaperMemory)
[![](https://img.shields.io/badge/Release-v0.5.10-A41716)](https://github.com/vict0rsch/PaperMemory/tree/0.5.10)

<br/>
Expand Down Expand Up @@ -61,7 +61,7 @@ This browser extension allows you to automatically store research papers you rea

## Supported venues

* Arxiv
* Arxiv
* PaperMemory will try to find if a pre-print has been published and create a corresponding `note` to the paper (see [preprints](#preprints))
* Also detects and matches papers from [huggingface.co/papers](https://huggingface.co/papers), [arxiv-vanity.com](https://arxiv-vanity.com), [ar5iv.org](https://ar5iv.org) and [scirate.com/](https://scirate.com/)
* BioRxiv
Expand Down Expand Up @@ -129,7 +129,9 @@ Share ideas 💡 in [issues](https://github.com/vict0rsch/PaperMemory/issues) an

* **Keyboard** navigation:
* Open the popup:
* `cmd/ctrl + shift + e`
* `cmd + shift + e` on Mac
* `ctrl + shift + m` on Linux & Windows
* See the extension's `User Guide` for customization
* Open the Memory
* `a` from the popup's home will open it
* navigate to the bottom left button with `tab` and hit `enter`
Expand Down Expand Up @@ -166,7 +168,7 @@ Share ideas 💡 in [issues](https://github.com/vict0rsch/PaperMemory/issues) an

By default, and _if_ they are not already attributed, the following keyboard shortcuts are available:

* `cmd/ctrl + shift + e` will open PaperMemory's popup
* `cmd + shift + e` will open PaperMemory's popup on a Mac, `ctrl + shift + m` on Linux & Windows.
* `cmd/ctrl + shift + s` will try to download the pdf of the current paper. If you have enabled this feature in the menu, the paper will be downloaded in your PaperMemoryStore (see thee advanced options page for more info)
* `cmd/ctrl + shift + l` will trigger the manual parsing of a paper if you have disabled automatic paper detection in the menu

Expand Down
5 changes: 3 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Paper Memory",
"version": "0.5.10",
"version": "0.5.11",
"manifest_version": 2,
"description": "Automatically record papers and their codes from Arxiv, OpenReview & more! Organize your library with tags, links and quick notes.",
"homepage_url": "https://github.com/vict0rsch/PaperMemory",
Expand All @@ -22,7 +22,8 @@
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E"
"default": "Ctrl+Shift+E",
"linux": "Ctrl+Shift+M"
},
"description": "Open PaperMemory's Popup"
},
Expand Down
2 changes: 1 addition & 1 deletion src/popup/min/popup.min.html

Large diffs are not rendered by default.

15 changes: 12 additions & 3 deletions src/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -365,14 +365,16 @@ <h3>Keyboard Shortcuts</h3>
assigned.</p>
<p style="font-size: 0.9rem"> Go to your settings or <code>chrome://extensions/shortcuts</code> (Chrome
&amp; Brave) or
<code>about:extensions</code>
<code>about:addons</code><em>Tools for all add-ons</em> cogwheel ➜
<em>Manage Extension Shortcuts</em>
(Firefox) to set/edit these shortcuts.
</p>

<ul>
<li style="margin-bottom: 4px">Open the popup
<ul style="margin-top: 2px;">
<li><code>cmd/ctrl + shift + e</code></li>
<li><code>cmd + shift + e</code> on Mac</li>
<li><code>ctrl + shift + m</code> on Linux &amp; Windows</li>
</ul>
</li>

Expand Down Expand Up @@ -479,7 +481,14 @@ <h3>Search</h3>
<h3 style="margin-bottom: 0px;">What's new</h3>
<ul>
<li><strong>Current: </strong><a
href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.5.10">0.5.10</a>
href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.5.11">0.5.11</a>
<em>(2023-05-19)</em>
<ul>
<li>[dev] Update Firefox popup shortcut and instructions</li>
<li>[dev] Arbitrary website parsing enabled by default for new users</li>
</ul>
</li>
<li><a href="https://github.com/vict0rsch/PaperMemory/releases/tag/0.5.10">0.5.10</a>
<em>(2023-05-18)</em>
<ul>
<li>[feature] You can now parse arbitrary websites: you just need to confirm / update the
Expand Down
1 change: 0 additions & 1 deletion src/shared/js/utils/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ global.prefsCheckDefaultFalse = [
"checkPdfOnly",
"checkNoAuto",
"checkMdYearVenue",
"checkWebsiteParsing",
];
/**
* All keys to retrieve from the menu, the checkboxes + the custom pdf function
Expand Down
Loading

0 comments on commit e88d8f0

Please sign in to comment.