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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The Field Calculator for ServiceNow allows performing computations on numerical input fields on ServiceNow pages.The extension…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Field Calculator for ServiceNow एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/"
}