SuiteTime
SuiteTime facilitates user to fill time tracking details from all NetSuite Forms through a Button click within 10 seconds.
¿Qué es SuiteTime?
SuiteTime es una extensión de Chrome desarrollada por https://netsolutes.com, y su función principal es "SuiteTime facilitates user to fill time tracking details from all NetSuite Forms through a Button click within 10 seconds.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SuiteTime
Descarga archivos de extensión SuiteTime en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
SuiteTime enables filling NetSuite timesheet easily. It gives you a Button on all NetSuite pages to enter your time while you are working on your day to day tasks. It list downs all the project and task assigned to you so that you can select them and fill your time against them. SuiteTime memorizes the time that you have filled in so that you can later sync your Netsuite timesheet. No need to navigate to Timesheet form. This reduces number of clicks user needs to get on time form. Send us your feedback at [email protected]
Información Básica de la Extensión
Nombre | SuiteTime |
ID | oimigblhmdfffmkalfddeajimhecbbgk |
URL Oficial | https://chromewebstore.google.com/detail/suitetime/oimigblhmdfffmkalfddeajimhecbbgk |
Descripción | SuiteTime facilitates user to fill time tracking details from all NetSuite Forms through a Button click within 10 seconds. |
Tamaño del Archivo | 1.25 MB |
Cantidad de Instalaciones | 40 |
Versión Actual | 0.1.3 |
Última Actualización | 2020-03-08 |
Fecha de Publicación | 2020-03-08 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://netsolutes.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://netsolutes.com/ |
URL de la Página de Ayuda | https://netsolutes.com/faq |
URL de la Página de Política de Privacidad | https://netsolutes.com/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SuiteTime", "version": "0.1.3", "manifest_version": 2, "description": "SuiteTime facilitates user to fill time tracking details from all NetSuite Forms through a Button click within 10 seconds.", "homepage_url": "https:\/\/netsolutes.com\/", "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "icons": { "16": "icons\/logo.png", "48": "icons\/logo.png", "128": "icons\/logo.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": "icons\/logo.png", "default_title": "SuiteTime", "default_popup": "src\/browser_action\/home.html" }, "permissions": [ "notifications", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.app.netsuite.com\/*" ], "css": [ "src\/inject\/inject.css", "src\/inject\/jqueryModal.css" ] }, { "run_at": "document_end", "matches": [ "https:\/\/*.app.netsuite.com\/*" ], "js": [ "js\/jquery\/jquery.min.js", "src\/inject\/inject.js", "src\/inject\/NetSuitePush.js" ] } ] } |