GroundAI
Read ArXiv papers in html
什么是GroundAI?
GroundAI是由https://groundai.com开发的Chrome扩展程序,该扩展的主要功能是“Read ArXiv papers in html”。
扩展截图
下载GroundAI扩展crx文件
下载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 |
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" ] } ] } |