arxivist

arxivist reorders pages on arXiv.org based on your preferences

arxivistคืออะไร?

arxivist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan F-M และคุณลักษณะหลักของมันคือ "arxivist reorders pages on arXiv.org based on your preferences"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย arxivist

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}