GroundAI

Read ArXiv papers in html

Was ist GroundAI?

GroundAI ist eine Chrome-Erweiterung, die von https://groundai.com entwickelt wurde, und ihr Hauptmerkmal ist "Read ArXiv papers in html".

Erweiterungsscreenshots

screenshot

GroundAI-Erweiterungs-CRX-Datei herunterladen

Laden Sie GroundAI-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name GroundAI GroundAI
ID clmfghaigoglldpeccpmabboajajjhfp
Offizielle URL https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp
Beschreibung Read ArXiv papers in html
Dateigröße 42.6 KB
Installationsanzahl 35
Aktuelle Version 0.0.0.2
Letztes Update 2018-05-01
Veröffentlichungsdatum 2018-05-01
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://groundai.com
Zahlungsart free
Erweiterungswebsite https://www.groundai.com
Unterstützte Sprachen 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"
            ]
        }
    ]
}