Calculator

A simple and intuitive calculator to help you with your work. Opens directly on the site page

Calculator란 무엇입니까?

Calculator은(는) Price Tracker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple and intuitive calculator to help you with your work. Opens directly on the site page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Calculator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple and intuitive calculator. Open by clicking on the icon. The design of the calculator is nice and similar to the design of ios calculator.

The calculator supports basic arithmetic operations: addition, subtraction, multiplication, division. The operations of entering the number and keyboard of the computer are available.

In the new update, it became possible to open the calculator directly on the website page. To open the calculator on the website page, select "Open calculator" in the context menu. You can drag the calculator to anywhere on the web page.

There is advertising in the extension, advertising helps us make our products better.                    

확장 프로그램 기본 정보

이름 Calculator Calculator
ID lanchoggmnkmkehofmdonkbcdolfonmf
공식 URL https://chromewebstore.google.com/detail/calculator/lanchoggmnkmkehofmdonkbcdolfonmf
설명 A simple and intuitive calculator to help you with your work. Opens directly on the site page
파일 크기 40.48 KB
설치 횟수 68,131
현재 버전 0.0.63
최근 업데이트 2022-12-27
출시 날짜 2020-04-10
평점 4.15/5 총 62 개의 평점
개발자 Price Tracker
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://otsledit.app/en/private_policy
지원되는 언어 de,en,fr,tr,es,it,pl,pt-PT,ru,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.63",
    "name": "__MSG_EXTENSION_NAME__",
    "short_name": "__MSG_EXTENSION_SHORT_NAME__",
    "description": "__MSG_EXTENSION_DESCRIPTION__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "scripting"
    ],
    "icons": {
        "128": "icons\/calculatorplus_icon-128px.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/popup.js",
                "css\/content.css",
                "icons\/*.png",
                "icons\/sprites\/*.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Simple Calculator",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icons\/calculatorplus_icon-128px.png"
        }
    }
}