FreedomCalc
Free text calculator extension, You can perform basic to complex mathamatical calculations without irritating button clicks.
FreedomCalc란 무엇입니까?
FreedomCalc은(는) https://saikirand.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Free text calculator extension, You can perform basic to complex mathamatical calculations without irritating button clicks."입니다.
확장 프로그램 스크린샷
FreedomCalc 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Free text based basic and scientific calculator, where you can just perform calculation by typing in in free text form like 2*log(30) etc and press enter. You can also perform unit conversions by typing "30mm in inch". You can chain Operations, with variables, like eg. a=3+5 a^10 Where value of "a" from first step will be used to calculate second step, you can use any number of variables across operations. An inbuilt variable "ans" can be used to get answer of previous calculation, eg. 10+12+13+24 ans/4 Second step above use the summation form first step and divided it by 4. You can select any mathematical text in browser while accessing and website, right click and select FreedomCalc to get result of the calculation. All Available operations: x + y (add) x - y (subtract) x * y (multiply) x .* y (element-wise multiply) x / y (divide) x ./ y (element-wise divide) x % y (mod) x ^ y (power) x ^ y (element-wise power) -y (unary minus) y' (transpose) y! (factorial) x = y (assignment) x : y (range) x in y (unit conversion) x == y (equal) x != y (unequal) x < y (smaller) x > y (larger) x <= y (smallereq) x >= y (largereq)
확장 프로그램 기본 정보
이름 | FreedomCalc |
ID | pgkcfgmddfnghiihjjlbacjjdpcnkoga |
공식 URL | https://chromewebstore.google.com/detail/freedomcalc/pgkcfgmddfnghiihjjlbacjjdpcnkoga |
설명 | Free text calculator extension, You can perform basic to complex mathamatical calculations without irritating button clicks. |
파일 크기 | 281 KB |
설치 횟수 | 78 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2013-10-13 |
출시 날짜 | 2013-10-13 |
개발자 | https://saikirand.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FreedomCalc", "version": "1.0.1", "manifest_version": 2, "description": "Free text calculator extension, You can perform basic to complex mathamatical calculations without irritating button clicks.", "browser_action": { "default_icon": "img\/icon.png", "default_popup": "index.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self' 'unsafe-eval'", "permissions": [ "storage", "contextMenus", "notifications" ], "background": { "scripts": [ "js\/math.min.js", "js\/background.js" ], "persistent": true }, "icons": { "16": "img\/icon.png", "48": "img\/icon.png", "128": "img\/icon.png" } } |