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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة arxivist
قم بتنزيل ملفات الامتداد arxivist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } ] } |