Verint Community Developer Shortcuts

Adds helpful developer shortcuts for use when working with Verint Community.

Τι είναι το Verint Community Developer Shortcuts;

Το Verint Community Developer Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ardourdigital.co.uk, και η κύρια λειτουργία του είναι "Adds helpful developer shortcuts for use when working with Verint Community.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Verint Community Developer Shortcuts

Λήψη αρχείων επέκτασης Verint Community Developer Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Adds a set of useful shortcuts for developers using Verint Community (aka Telligent Community).

The extension will only be enabled when you are logged in as an administrator, and using a supported version of Verint Community. The options available will vary based on the version of Telligent you are using, see the list below for more details.

Telligent Community 9.x, 10.x and Verint Community 11.x
- Clear All Caches
- Clear UI Cache
- Clear Data Cache
- Reload Plugins
- Widget Studio
- Close Open Widgets in Widget Studio
- Widget API Documentation (not available when using 9.1+)
- Exceptions
- Guid Generator
- Edit Current Page

Telligent Community 8.x (aka Zimbra Community/Social 8.x)
- Developer Tools
- Widget Studio
- Widget API Documentation
- Exceptions

Keyboard shortcuts can be configured for any of the operations, by default shortcuts are available for:
- Clear All Caches (CTRL+Shift+A)
- Clear UI Cache (CTRL+Shift+U)
- Clear Data Cache (CTRL+Shift+S)

If you have any questions, suggestions or issues please get in touch!

Update History
==============

1.4.2 - Renamed to Verint Community and Added support fot 11.0
1.3.1 - Fixed Cache Clearing and Widget Closing in 10.3
1.2.3 - Added "Edit Current Page" link, which opens the page editor. Fixed issue with extension not being enabled in adminstration area.
1.2.2 - Added support for Telligent 10.x
1.1.1 - Added "Close Open Widgets" link for Widget Studio in 9.x
1.0.1 - Initial Release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Verint Community Developer Shortcuts Verint Community Developer Shortcuts
ID aladgkopcpohllbbmbfeifdaedmmjoge
Επίσημο URL https://chromewebstore.google.com/detail/verint-community-develope/aladgkopcpohllbbmbfeifdaedmmjoge
Περιγραφή Adds helpful developer shortcuts for use when working with Verint Community.
Μέγεθος Αρχείου 21.14 KB
Αριθμός Εγκαταστάσεων 171
Τρέχουσα Έκδοση 1.4.2
Τελευταία Ενημέρωση 2019-07-01
Ημερομηνία Δημοσίευσης 2019-07-01
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://ardourdigital.co.uk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.ardourdigital.co.uk/
URL της Σελίδας Πολιτικής Απορρήτου https://www.ardourdigital.co.uk/privacy-policy
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Verint Community Developer Shortcuts",
    "short_name": "Telligent DevTools",
    "description": "Adds helpful developer shortcuts for use when working with Verint Community.",
    "version": "1.4.2",
    "author": "Ardour Digital Limited",
    "icons": {
        "128": "img\/icon_128.png",
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png"
    },
    "permissions": [
        "cookies",
        "notifications",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "28": "img\/icon_38.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "variables.js",
                "http.js",
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "variables.js",
            "controller.js",
            "events.js"
        ]
    },
    "commands": {
        "clearUiCache": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Clear UI Cache"
        },
        "clearContentCache": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Clear Data Cache"
        },
        "clearCaches": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Clear all Caches"
        },
        "reloadPlugins": {
            "description": "Reload Plugins"
        },
        "widgetApiDocumentation": {
            "description": "Open Widget API Documentation"
        },
        "viewExceptions": {
            "description": "Open Exceptions Log"
        },
        "openWidgetStudio": {
            "description": "Open Widget Studio"
        },
        "openGuidGenerator": {
            "description": "Open Guid Generator"
        },
        "openDeveloperTools": {
            "description": "Open Developer Tools"
        },
        "closeOpenWidgets": {
            "description": "Close All Open widgets in the Widget Studio"
        },
        "editCurrentPage": {
            "description": "Edit the widgets for the current page"
        }
    },
    "web_accessible_resources": [
        "img\/icon_80.png"
    ]
}