GroundAI
Read ArXiv papers in html
GroundAI란 무엇입니까?
GroundAI은(는) https://groundai.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Read ArXiv papers in html"입니다.
확장 프로그램 스크린샷
GroundAI 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |