Garytations

Makes it easy to type in the annotations Gary wants

Co to jest Garytations?

Garytations to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Makes it easy to type in the annotations Gary wants”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Garytations

Pobierz pliki rozszerzeń Garytations 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

                        This extension adds an additional text box underneath the comment box when entering your hours on mytime. This textbox is a text suggestion engine that will suggest the correct annotation so Gary can easily find what hours you worked for what. In addition, when you set the comment via the Garytation box it will also default the type to 'Hours Worked' so you don't have to select that. There's also a little bit of magic sometimes to brighten up your day ;)

The enter key will now select the first suggestion automatically and has improved styling!                    

Podstawowe informacje o rozszerzeniu

Nazwa Garytations Garytations
ID pjhmggenempfflegjjjdhmpjnlojknkk
Oficjalny URL https://chromewebstore.google.com/detail/garytations/pjhmggenempfflegjjjdhmpjnlojknkk
Opis Makes it easy to type in the annotations Gary wants
Rozmiar pliku 207 KB
Liczba instalacji 27
Aktualna Wersja 0.2.1
Ostatnia Aktualizacja 2019-04-21
Data Publikacji 2019-04-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Garytations",
    "short_name": "Garytations",
    "version": "0.2.1",
    "description": "Makes it easy to type in the annotations Gary wants",
    "icons": {
        "16": "gg16.png",
        "48": "gg48.png",
        "128": "gg128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/act.ucsd.edu\/employeeMyTimeEntry\/calendar-time-entry.htm",
                "https:\/\/act.ucsd.edu\/employeeMyTimeEntry\/calendar-time-entry.htm"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "typeahead.bundle.js",
                "background.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/act.ucsd.edu\/employeeMyTimeEntry\/calendar-time-entry.htm",
        "https:\/\/act.ucsd.edu\/employeeMyTimeEntry\/calendar-time-entry.htm"
    ],
    "manifest_version": 2
}