GroundAI

Read ArXiv papers in html

What is GroundAI?

GroundAI is a Chrome extension developed by https://groundai.com, and its main feature is "Read ArXiv papers in html".

Extension Screenshots

screenshot

Download GroundAI Extension CRX File

Download GroundAI extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name GroundAI GroundAI
ID clmfghaigoglldpeccpmabboajajjhfp
Official URL https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp
Description Read ArXiv papers in html
File Size 42.6 KB
Installation Count 35
Current Version 0.0.0.2
Last Updated 2018-05-01
Publish Date 2018-05-01
Rating 5.00/5 Total 1 Ratings
Developer https://groundai.com
Payment Type free
Extension Website https://www.groundai.com
Supported Languages 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"
            ]
        }
    ]
}