GroundAI

Read ArXiv papers in html

O que é GroundAI?

GroundAI é uma extensão do Chrome desenvolvida por https://groundai.com, e sua principal característica é "Read ArXiv papers in html".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GroundAI

Baixe arquivos de extensão GroundAI no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome GroundAI GroundAI
ID clmfghaigoglldpeccpmabboajajjhfp
URL Oficial https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp
Descrição Read ArXiv papers in html
Tamanho do Arquivo 42.6 KB
Contagem de Instalações 35
Versão Atual 0.0.0.2
Última Atualização 2018-05-01
Data de Publicação 2018-05-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://groundai.com
Tipo de Pagamento free
Site da Extensão https://www.groundai.com
Idiomas Suportados 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"
            ]
        }
    ]
}