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