XR Graph - Browser Integration
This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh.
XR Graph - Browser Integration란 무엇입니까?
XR Graph - Browser Integration은(는) Marlon Lückert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh."입니다.
확장 프로그램 스크린샷
XR Graph - Browser Integration 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The website XR-graph.now.sh lets you display math functions in virtual reality. This browser extensions lets you easily import function from other websites like google.com or wolframalpha.com. If you enter a math function at Google Search (e.g. "cos(x) + sin(y)") a new button "View in VR" will appear. This button redirects you to XR-graph.now.sh and lets you interact with the graph in virtual reality.
확장 프로그램 기본 정보
이름 | XR Graph - Browser Integration |
ID | mkapnmjibodohclhpalpcohdibinijfi |
공식 URL | https://chromewebstore.google.com/detail/xr-graph-browser-integrat/mkapnmjibodohclhpalpcohdibinijfi |
설명 | This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh. |
파일 크기 | 92.36 KB |
설치 횟수 | 167 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-03-08 |
출시 날짜 | 2020-03-07 |
개발자 | Marlon Lückert |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://xr-graph.now.sh/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "XR Graph - Browser Integration", "description": "This extension adds a button to websites which display math graphs to directly open them in xr-graph.now.sh.", "version": "1.0.0", "icons": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png", "48": "icon\/icon-48.png", "128": "icon\/icon-128.png" }, "browser_action": { "default_icon": { "19": "icon\/icon-19.png", "38": "icon\/icon-38.png" }, "default_title": "XR Graph - Browser Integration", "default_popup": "html\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.wolframalpha.com\/*" ], "js": [ "js\/wolframalpha.js" ], "css": [ "css\/wolframalpha.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "js\/google.js" ], "css": [ "css\/google.css" ], "run_at": "document_end" }, { "matches": [ "http:\/\/weitz.de\/*" ], "js": [ "js\/weitz.js" ], "css": [ "css\/weitz.css" ], "run_at": "document_end" } ] } |