Unverified Publisher
Flags items published by entities that haven’t gone through the publisher verification process of the marketplace. Lack of verification may indicate higher risk, as the publisher’s identity and trustworthiness are unconfirmed.
Características principales: Comentarios eficientes: La extensión permite a los usuarios agregar comentarios a sus órdenes de manera rápida y sencilla. Con solo unos clics, los trabajadores pueden proporcionar información relevante y detallada sobre las órdenes en curso. Gestión centralizada: La extensión organiza todos los comentarios en una interfaz fácil de usar, proporcionando una vista general de todas las órdenes con sus respectivos comentarios. Esto facilita el seguimiento de las actividades y permite una gestión más eficiente del tiempo. Reducción de errores: Al contar con comentarios claros y precisos, los trabajadores minimizan la posibilidad de cometer errores en la gestión de las órdenes. Esto ayuda a mejorar la calidad del trabajo y a evitar retrabajos innecesarios. Ahorro de tiempo: La extensión agiliza el proceso de agregar comentarios, lo que permite a los trabajadores optimizar su tiempo y centrarse en otras tareas importantes de su trabajo. Requisitos: Esta extensión solo funciona en la página web de la empresa, Los usuarios deben haber iniciado sesión en la plataforma para poder utilizar la extensión.
Flags items published by entities that haven’t gone through the publisher verification process of the marketplace. Lack of verification may indicate higher risk, as the publisher’s identity and trustworthiness are unconfirmed.
Flags items where the publisher's email address has been found in known data breaches. This indicates potential security risks as compromised email accounts could be used for unauthorized access or malicious publishing.
Flags items lacking installs on the marketplace, suggesting concerns about the extension's reputation and the publisher's reliability.
AI-powered analysis of the extension's source code for security insights and risk assessment.
The extension is designed to facilitate efficient commenting on orders within a specific web platform, https://2wcall.com/. It aims to streamline the process of adding comments, manage them centrally, and reduce errors, ultimately saving time for users.
chrome.runtime.onInstalled.addListener(() => {
chrome.sidePanel.setPanelBehavior({ openPanelOnActionClick: true });
initializeFormValues();
});
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
if (
changeInfo.status === "complete" &&
tab.url.includes("https://2wcall.com/")
) {
initializeFormValues(tabId);
}
});
function initializeFormValues(tabId) {
if (!tabId) return;
const idMap = {
codigoPostal: "#customer_zip",
// ... other mappings
};
Object.entries(idMap).forEach(([id, selector]) => {
chrome.scripting.executeScript({
target: { tabId: tabId },
func: (selector) => {
const element = document.querySelector(selector);
if (
element &&
(element.tagName === "INPUT" || element.tagName === "TEXTAREA")
) {
element.value = "";
element.dispatchEvent(new Event("input", { bubbles: true }));
}
},
args: [selector],
});
});
}
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.action === "updateInputValue") {
chrome.windows.getAll({ populate: true }, (windows) => {
windows.forEach((window) => {
window.tabs.forEach((tab) => {
if (tab.url.includes("https://2wcall.com/")) {
chrome.scripting.executeScript({
target: { tabId: tab.id },
func: updateInputValue,
args: [message.id, message.value],
});
}
});
});
});
}
});
https://2wcall.com/.The extension appears to be focused on enhancing user interaction with a specific web platform by managing form inputs efficiently. No strong indicators of malicious behavior were observed.
API calls detected through static analysis of the source code. For more accurate insights, explore our sandbox dynamic analysis.
Any encoded/decoded secrets we managed to find in the source code, git repository, or related files
Known vulnerabilities and security issues detected in the extension's dependencies and code.
Any identifiers we detected that may indicate external communication from the item's code
Dependencies and third-party libraries used by the extension, including version information and license details.
Compliance status and certifications for the extension and its publisher