arXiv keys

Adds keyboard navigation keys to the arXiv.

arXiv keysとは何ですか?

arXiv keysはLeo C. Steinによって開発されたChromeの拡張機能で、その主な機能は「Adds keyboard navigation keys to the arXiv.」です。

拡張機能のスクリーンショット

screenshot
screenshot

arXiv keys拡張機能のCRXファイルをダウンロード

arXiv keys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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"
            ]
        }
    ]
}