GroundAI
Read ArXiv papers in html
Wat is GroundAI?
GroundAI is een Chrome-extensie ontwikkeld door https://groundai.com, en de belangrijkste functie is "Read ArXiv papers in html".
Extensie Screenshots
Download het CRX-bestand van de extensie GroundAI
Download GroundAI-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Click in the GroundAI icon when you're in an ArXiv paper page, and it'll automatically open the GroundAI HTML version.
Basisinformatie over de Extensie
Naam | GroundAI |
ID | clmfghaigoglldpeccpmabboajajjhfp |
Officiële URL | https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp |
Beschrijving | Read ArXiv papers in html |
Bestandsgrootte | 42.6 KB |
Aantal Installaties | 35 |
Huidige Versie | 0.0.0.2 |
Laatst Bijgewerkt | 2018-05-01 |
Publicatiedatum | 2018-05-01 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://groundai.com |
Betalingswijze | free |
Extensiewebsite | https://www.groundai.com |
Ondersteunde Talen | 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" ] } ] } |