Display Access Keys

Displays hint of access keys next ot the elements.

Vad är Display Access Keys?

Display Access Keys är en Chrome-tillägg utvecklad av dharris, och dess huvudfunktion är "Displays hint of access keys next ot the elements.".

Tilläggsskärmbilder

screenshot

Ladda ner Display Access Keys-förlängningens CRX-fil

Ladda ner Display Access Keys-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A Chrome extension which shows subtle hints of the access keys provided by the site's developer.

This is based on a Firefox customization discussed here: http://blog.andrewbeacock.com/2007/06/firefox-hack-to-display-accesskey.html

Source at https://github.com/dougharris/display-access-keys                    

Grundläggande Information om Tillägg

Namn Display Access Keys Display Access Keys
ID gpicedcgegaokienkdbbcagodgacpbpd
Officiell webbadress https://chromewebstore.google.com/detail/display-access-keys/gpicedcgegaokienkdbbcagodgacpbpd
Beskrivning Displays hint of access keys next ot the elements.
Filstorlek 6.56 KB
Antal Installationer 443
Aktuell Version 1.1
Senast Uppdaterad 2017-03-06
Publiceringsdatum 2017-03-06
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare dharris
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/dougharris/display-access-keys
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Display Access Keys",
    "version": "1.1",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "description": "Displays hint of access keys next ot the elements.",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "display-access-keys.css"
            ]
        }
    ]
}