arxivist

arxivist reorders pages on arXiv.org based on your preferences

arxivistとは何ですか?

arxivistはDan F-Mによって開発されたChromeの拡張機能で、その主な機能は「arxivist reorders pages on arXiv.org based on your preferences」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension reorders the listings at arXiv.org based on your browsing history. It keeps track of the papers that you have clicked on previously and it moves similar papers to the top of the list. This makes it easier to find the papers that you want to read without changing your browsing habits.                    

拡張機能の基本情報

名前 arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
公式URL https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
説明 arxivist reorders pages on arXiv.org based on your preferences
ファイルサイズ 33.33 KB
インストール数 118
現在のバージョン 0.2.0
最終更新日 2021-12-03
公開日 2021-12-03
評価 5.00/5 合計 1 レビュー
開発者 Dan F-M
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dfm/arxivist
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "arxivist",
    "version": "0.2.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "description": "arxivist reorders pages on arXiv.org based on your preferences",
    "homepage_url": "https:\/\/github.com\/dfm\/arxivist",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/arxiv.org\/list\/*\/new*",
                "*:\/\/arxiv.org\/list\/*\/recent*",
                "*:\/\/arxiv.org\/list\/*\/pastweek*",
                "*:\/\/arxiv.org\/abs\/*"
            ],
            "js": [
                "src\/stopwords.js",
                "src\/stemmer.js",
                "src\/arxivist.js"
            ]
        }
    ]
}