Smartsheet Dashboard Overlay

Adds the ability to overlay shapes & guide-lines on Smartsheet's dashboard editor to assist with more consistent widget placement.

Smartsheet Dashboard Overlay क्या है?

Smartsheet Dashboard Overlay davocarli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the ability to overlay shapes & guide-lines on Smartsheet's dashboard editor to assist with more consistent widget placement."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Smartsheet Dashboard Overlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        NOTE: You may need to restart your browser after installing this extension for the menu to appear with all the correct icons.

This extension will add an icon while using Smartsheet Dashboard Editor that will allow you to overlay shapes over the dashboard's grid. This can allow you to create gridlines or outlines for common item placement, and assist you with more easily placing your dashboard widgets in a consistent way.

PLEASE NOTE:
This extension is not officially developed by Smartsheet or maintained by them.

Usage Instructions:
The extension will add a new icon to the right sidebar of Smartsheet's dashboard editor. Clicking on it will open a panel that allows you to enable or disable different overlays for the dashboard's grid. Clicking the More ( ⋮ ) button at the top of the panel will open the extension's settings page, where you can add custom layouts - instructions for this are included on this page.

Alternatively, you can click the extension icon in Chrome to immediately add the grid layout to the dashboard editor. This is included in case future changes to Smartsheet's dashboard editor break the functionality of the side panel.                    

एक्सटेंशन की मूल जानकारी

नाम Smartsheet Dashboard Overlay Smartsheet Dashboard Overlay
ID dkaedoafnhghbnaakihajldghaabpcio
आधिकारिक URL https://chromewebstore.google.com/detail/smartsheet-dashboard-over/dkaedoafnhghbnaakihajldghaabpcio
विवरण Adds the ability to overlay shapes & guide-lines on Smartsheet's dashboard editor to assist with more consistent widget placement.
फ़ाइल का आकार 25.81 KB
स्थापना संख्या 451
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-02-05
प्रकाशन तिथि 2022-05-11
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर davocarli
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://davocarli.dev/privacy-policy/smartsheetDashboardOverlay
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smartsheet Dashboard Overlay",
    "description": "Adds the ability to overlay shapes & guide-lines on Smartsheet's dashboard editor to assist with more consistent widget placement.",
    "version": "1.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "images\/tictactoe-16.png",
        "48": "images\/tictactoe-48.png",
        "128": "images\/tictactoe-128.png"
    },
    "action": {
        "default_title": "Click to add grid",
        "default_icon": "images\/tictactoe.png"
    },
    "options_page": "pages\/options.html",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "css\/grid-helper-style.css"
            ],
            "matches": [
                "https:\/\/app.smartsheet.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/app.smartsheet.com\/dashboards\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/grid.svg",
                "css\/grid-helper-style.css"
            ],
            "matches": [
                "https:\/\/app.smartsheet.com\/*"
            ]
        }
    ]
}