GroundAI

Read ArXiv papers in html

Vad är GroundAI?

GroundAI är en Chrome-tillägg utvecklad av https://groundai.com, och dess huvudfunktion är "Read ArXiv papers in html".

Tilläggsskärmbilder

screenshot

Ladda ner GroundAI-förlängningens CRX-fil

Ladda ner GroundAI-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn GroundAI GroundAI
ID clmfghaigoglldpeccpmabboajajjhfp
Officiell webbadress https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp
Beskrivning Read ArXiv papers in html
Filstorlek 42.6 KB
Antal Installationer 35
Aktuell Version 0.0.0.2
Senast Uppdaterad 2018-05-01
Publiceringsdatum 2018-05-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://groundai.com
Betalningssätt free
Tilläggswebbplats https://www.groundai.com
Stödda Språk 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"
            ]
        }
    ]
}