Smartsheet Extension
Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.
Co to jest Smartsheet Extension?
Smartsheet Extension to rozszerzenie Chrome opracowane przez ing.cmolina, a jego główną funkcją jest „Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Smartsheet Extension
Pobierz pliki rozszerzeń Smartsheet Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Smartsheet Extension |
ID | alaiobianfncjpaneanbdpecondcnifn |
Oficjalny URL | https://chromewebstore.google.com/detail/smartsheet-extension/alaiobianfncjpaneanbdpecondcnifn |
Opis | Enhance your Smartsheet experience with the Smartsheet Extension. Go back to your last edited row. |
Rozmiar pliku | 26.75 KB |
Liczba instalacji | 133 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-07-04 |
Data Publikacji | 2023-07-03 |
Deweloper | ing.cmolina |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } ] } |