GroundAI

Read ArXiv papers in html

GroundAIคืออะไร?

GroundAI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://groundai.com และคุณลักษณะหลักของมันคือ "Read ArXiv papers in html"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย GroundAI ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}