Smartsheet Extension

Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.

¿Qué es Smartsheet Extension?

Smartsheet Extension es una extensión de Chrome desarrollada por ing.cmolina, y su función principal es "Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Smartsheet Extension

Descarga archivos de extensión Smartsheet Extension 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

                        Enhance your Smartsheet experience with the Smartsheet Extension. This extension executes custom code whenever you visit a Smartsheet URL, allowing you to automate tasks and streamline your workflow.

Features:

- Scroll to Specific Rows: The included code enables you to scroll directly to a specific row in the Smartsheet grid, making it easier to navigate and focus on the relevant information.                    

Información Básica de la Extensión

Nombre Smartsheet Extension Smartsheet Extension
ID alaiobianfncjpaneanbdpecondcnifn
URL Oficial https://chromewebstore.google.com/detail/smartsheet-extension/alaiobianfncjpaneanbdpecondcnifn
Descripción Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.
Tamaño del Archivo 26.75 KB
Cantidad de Instalaciones 133
Versión Actual 1.0
Última Actualización 2023-07-04
Fecha de Publicación 2023-07-03
Desarrollador ing.cmolina
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Smartsheet Extension",
    "version": "1.0",
    "icons": {
        "16": "icons\/16.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "description": "Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.",
    "host_permissions": [
        "https:\/\/app.smartsheet.com\/sheets\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/app.smartsheet.com\/sheets\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                "https:\/\/app.smartsheet.com\/*"
            ]
        }
    ]
}