FreshService Usability Upgrader

This extension provides extra functionality to the freshservice support pages.

Co je FreshService Usability Upgrader?

FreshService Usability Upgrader je rozšíření Chrome vyvinuté josh.doades, a jeho hlavní funkcí je „This extension provides extra functionality to the freshservice support pages.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření FreshService Usability Upgrader

Stáhněte si soubory rozšíření FreshService Usability Upgrader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension provides extra functionality to the freshservice support pages. Tickets will now be highlighted across the whole row. And the tickets page will now auto refresh! See the code & updates here https://github.com/jashdoadeless/FreshServiceUsabilityUpgrader                    

Základní Informace o Rozšíření

Název FreshService Usability Upgrader FreshService Usability Upgrader
ID balaaohckebjfjbhblhpeopfcmapaiod
Oficiální URL https://chromewebstore.google.com/detail/freshservice-usability-up/balaaohckebjfjbhblhpeopfcmapaiod
Popis This extension provides extra functionality to the freshservice support pages.
Velikost souboru 29.49 KB
Počet instalací 60
Aktuální Verze 0.2
Poslední Aktualizace 2020-08-11
Datum Vydání 2020-05-21
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář josh.doades
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jashdoadeless/FreshServiceUsabilityUpgrader
URL Stránky Nápovědy https://github.com/jashdoadeless/FreshServiceUsabilityUpgrader/issues
Podporované Jazyky en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FreshService Usability Upgrader",
    "version": "0.2",
    "description": "This extension provides extra functionality to the freshservice support pages.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.freshservice.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}