arxivist

arxivist reorders pages on arXiv.org based on your preferences

arxivist là gì?

arxivist là một tiện ích mở rộng Chrome được phát triển bởi Dan F-M, và tính năng chính của nó là "arxivist reorders pages on arXiv.org based on your preferences".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng arxivist

Tải xuống các tệp mở rộng arxivist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên arxivist arxivist
ID fmnaemfbhjjgdokfgboolpjhnfcdaime
URL Chính Thức https://chromewebstore.google.com/detail/arxivist/fmnaemfbhjjgdokfgboolpjhnfcdaime
Mô tả arxivist reorders pages on arXiv.org based on your preferences
Kích Thước Tệp 33.33 KB
Số Lần Cài Đặt 118
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2021-12-03
Ngày Phát Hành 2021-12-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dan F-M
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dfm/arxivist
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}