Field Calculator for ServiceNow

The Field Calculator for ServiceNow allows performing computations on numerical input fields on ServiceNow pages.The extension…

Field Calculator for ServiceNow란 무엇입니까?

Field Calculator for ServiceNow은(는) https://www.pericror.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Field Calculator for ServiceNow allows performing computations on numerical input fields on ServiceNow pages.The extension…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        The Field Calculator for ServiceNow allows performing computations on numerical input fields on ServiceNow pages.The extension populates the calculator buttons from supported numerical input fields found on the current ServiceNow page. Supported fields include Integer, Decimal, Float, Long, Price, and Currency. After performing a computation, you can save the results back directly into one of your numerical input fields found on the page. Basic arithmetic (addition, subtraction, multiplication, division) and nested expressions are supported. The calculator additionally has a delete button to delete the last operation and a clear button to clear the current computation.

This app does not store/transfer any of your data outside of your browser.
This app requires access to data at *.service-now in order to access the input values on the page and update them from the extension directly.                    

확장 프로그램 기본 정보

이름 Field Calculator for ServiceNow Field Calculator for ServiceNow
ID jjaeadllidcmadooeglkjpofmjobnmnc
공식 URL https://chrome.google.com/webstore/detail/field-calculator-for-serv/jjaeadllidcmadooeglkjpofmjobnmnc
설명 The Field Calculator for ServiceNow allows performing computations on numerical input fields on ServiceNow pages.The extension…
파일 크기 38.26 KB
설치 횟수 22
현재 버전 1.0
최근 업데이트 2016-12-30
출시 날짜 2016-12-30
평점 4.00/5 총 3 개의 평점
개발자 https://www.pericror.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pericror.com/services/servicenow-consulting
도움말 페이지 URL https://www.pericror.com/servicenow/field-calculator-for-servicenow/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Field Calculator for ServiceNow",
    "version": "1.0",
    "offline_enabled": false,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.service-now.com\/*",
                "https:\/\/*.service-now.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_title": "Field Calculator for ServiceNow",
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs"
    ],
    "short_name": "Field Calculator",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "homepage_url": "https:\/\/www.pericror.com\/services\/servicenow-consulting\/"
}