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…”。
扩展截图
下载Field Calculator for ServiceNow扩展crx文件
下载Field Calculator for ServiceNow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
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\/" } |