GroundAI
Read ArXiv papers in html
Qu'est-ce que GroundAI ?
GroundAI est une extension Chrome développée par https://groundai.com, et sa fonction principale est "Read ArXiv papers in html".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GroundAI
Téléchargez les fichiers d'extension GroundAI au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Click in the GroundAI icon when you're in an ArXiv paper page, and it'll automatically open the GroundAI HTML version.
Informations de Base sur l'Extension
Nom | GroundAI |
ID | clmfghaigoglldpeccpmabboajajjhfp |
URL Officiel | https://chromewebstore.google.com/detail/groundai/clmfghaigoglldpeccpmabboajajjhfp |
Description | Read ArXiv papers in html |
Taille du Fichier | 42.6 KB |
Nombre d'Installations | 35 |
Version Actuelle | 0.0.0.2 |
Dernière Mise à Jour | 2018-05-01 |
Date de Publication | 2018-05-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://groundai.com |
Type de Paiement | free |
Site Web de l'Extension | https://www.groundai.com |
Langues Prises en Charge | 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" ] } ] } |