GroundAI

Read ArXiv papers in html

ما هو GroundAI؟

GroundAI هو إضافة Chrome تم تطويرها بواسطة https://groundai.com، والميزة الرئيسية لها هي "Read ArXiv papers in html".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GroundAI

قم بتنزيل ملفات الامتداد GroundAI بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Click in the GroundAI icon when you're in an ArXiv paper page, and it'll automatically open the GroundAI HTML version.                    

معلومات أساسية عن التمديد

الاسم GroundAI GroundAI
ID clmfghaigoglldpeccpmabboajajjhfp
عنوان URL الرسمي https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp
الوصف Read ArXiv papers in html
حجم الملف 42.6 KB
عدد التثبيتات 35
النسخة الحالية 0.0.0.2
آخر تحديث 2018-05-01
تاريخ النشر 2018-05-01
تقييم 5.00/5 مجموع تقييمات 1
المطور https://groundai.com
نوع الدفع free
موقع الإضافة https://www.groundai.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GroundAI",
    "version": "0.0.0.2",
    "description": "Read ArXiv papers in html",
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/arxiv.org\/",
        "https:\/\/arxiv.org\/",
        "activeTab",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "images\/icon32x32.png"
    },
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16x16.png",
        "32": "images\/icon32x32.png",
        "48": "images\/icon48x48.png",
        "144": "images\/icon144x144.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/abs\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "contentScript.js"
            ]
        }
    ]
}