arXiv keys
Adds keyboard navigation keys to the arXiv.
arXiv keys क्या है?
arXiv keys Leo C. Stein द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds keyboard navigation keys to the arXiv."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में arXiv keys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
New in v0.9.6: Persist which item is highlighted on each page when navigating away and back in the same session. ---------------------------------------------------------------- Less clicking, more science! Now you can navigate the arXiv with the keyboard instead of the mouse. This extension adds several "navkey" navigation keys / keyboard shortcuts to arXiv pages. On all pages: ? Show/hide short keyboard shortcut help / Set focus to search bar g Go to category... u Go to user page On list/search/author-id pages: j/k Steps down/up through the abstracts a/A Open the selected abstract in the current/new window p/P Open the selected PDF in the current/new window [/] Previous/next page of abstracts On abstract pages: p/P Open the selected PDF in the current/new window [/] Browse previous/next abstract
एक्सटेंशन की मूल जानकारी
नाम | arXiv keys |
ID | fkjjdlbhliopfhgddlpoggpmpgjfaojd |
आधिकारिक URL | https://chromewebstore.google.com/detail/arxiv-keys/fkjjdlbhliopfhgddlpoggpmpgjfaojd |
विवरण | Adds keyboard navigation keys to the arXiv. |
फ़ाइल का आकार | 133 KB |
स्थापना संख्या | 96 |
वर्तमान संस्करण | 0.9.6 |
अंतिम अपडेट | 2020-01-07 |
प्रकाशन तिथि | 2020-01-07 |
रेटिंग | 4.60/5 कुल 5 रेटिंग्स |
डेवलपर | Leo C. Stein |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/duetosymmetry/arXiv-keys |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "arXiv keys", "description": "Adds keyboard navigation keys to the arXiv.", "version": "0.9.6", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "css": [ "jquery-ui.min.css", "arXiv-keys.css" ], "js": [ "jquery-3.3.1.min.js", "jquery-ui.min.js", "categories.js", "goto-box.js", "arXiv-keys.js" ] }, { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "include_globs": [ "*:\/\/*\/abs\/*" ], "js": [ "abs.js" ] }, { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "include_globs": [ "*:\/\/*\/list*" ], "js": [ "list-find-items.js", "list.js" ] }, { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "include_globs": [ "*:\/\/*\/find*", "*:\/\/*\/a\/*" ], "js": [ "list-find-items.js", "find.js" ] }, { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "include_globs": [ "*:\/\/*\/search*" ], "js": [ "search.js" ] }, { "matches": [ "*:\/\/arxiv.org\/*", "*:\/\/*.arxiv.org\/*", "*:\/\/arxiv-web1.library.cornell.edu\/*", "*:\/\/arxiv-web2.library.cornell.edu\/*", "*:\/\/arxiv-web3.library.cornell.edu\/*", "*:\/\/xxx.lanl.gov\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "include_globs": [ "*:\/\/*\/catchup*", "*:\/\/*\/refs*", "*:\/\/*\/cits*" ], "js": [ "list-find-items.js" ] } ] } |