Gmail Quick Links

a replacement for Gmail Quick Links

Co je Gmail Quick Links?

Gmail Quick Links je rozšíření Chrome vyvinuté Kevin Wu, a jeho hlavní funkcí je „a replacement for Gmail Quick Links“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Gmail Quick Links

Stáhněte si soubory rozšíření Gmail Quick Links 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í

                        Adds a box to the left column that gives you 1-click access to any bookmarkable URL in Gmail. You can use it for saving frequent searches, important individual messages, and more.

Supports multiple logged-in gmail accounts, with ability to create quick links that work across all logged-in accounts.

Background: Google has decided to retire several Gmail Labs, including the Quick Links lab by Dan P.  This extension is a replacement to the original lab and is heavily inspired by that original lab.

This extension is open source and can be viewed by clicking on the project website.

v0.3.21 release notes
* add console debug information during gmail nodes detection

v0.3.20 release notes
* add button to allow the rename of links (stevennoto)

v0.3.19 release notes
* add confirmation dialog to link deletion

v0.3.18 release notes
* changed style selector to generic aria-label selector to avoid gmail style change breakages

v0.3.17 release notes
* update styles due to gmail changes (07/09/19)

v0.3.16 release notes
* update styles due to gmail changes (05/30/19)

v0.3.15 release notes
* update styles due to gmail changes (05/16/19)

v0.3.14 release notes
* add support for Simplify Gmail extension

v0.3.13 release notes
* fix bug where account name is lost due to not calling gmailAccountName function invocation

v0.3.12 release notes
* update gmail account name selector due to gmail style changes (2/28/19)

v0.3.11 release notes
* remove unneeded material ui check (fixes gmail UI changes on 12/11/18)

v0.3.10 release notes
* updated class styles due to gmail changes part 2 (12/5/18)

v0.3.9 release notes
* updated class styles due to gmail changes (12/5/18)

v0.3.8 release notes
* hide quick links from view during gmail sidebar collapse
* use gmail styles for increased text contrast due to possible theming defaults
* add bottom padding

v0.3.7 release notes
* updated class styles due to gmail changes (11/13/18)

v0.3.6 release notes
* compact vertical layout
* removed unneeded gmail class names

v0.3.5 release notes
* remove unneeded class name due to gmail ui changes (9/14/18)

v0.3.4 release notes
* remove style and className from Link due to gmail ui changes (9/7/18)

v0.3.3 release notes
* updated gmail querySelectors due to gmail classname changes (8/8/18)

v0.3.2 release notes
* added new queryselectors for gmail UI class name changes

v0.3.1 release notes
* bug fix with language selector in new gmail UI

v0.3.0 release notes
* add support for upcoming ui changes
* moves gmail quick links to top of inbox label

v0.2.6 - v0.2.7 release notes
* quick links are now inside widget container if widgets are enabled

v0.2.5 release notes
* fix misalignment of glyphs when changing zoom sizes

v0.2.4 release notes
* support international gmail users                    

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

Název Gmail Quick Links Gmail Quick Links
ID ecbkcjeoffcjnppapdlncohmehhnfibd
Oficiální URL https://chromewebstore.google.com/detail/gmail-quick-links/ecbkcjeoffcjnppapdlncohmehhnfibd
Popis a replacement for Gmail Quick Links
Velikost souboru 210 KB
Počet instalací 2,144
Aktuální Verze 0.3.21
Poslední Aktualizace 2021-03-07
Datum Vydání 2019-10-27
Hodnocení 4.44/5 Celkem 36 Hodnocení
Vývojář Kevin Wu
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/kevinwucodes/gmail-quick-links
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Quick Links",
    "version": "0.3.21",
    "description": "a replacement for Gmail Quick Links",
    "short_name": "Gmail Links",
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon48.png"
    },
    "author": "Kevin Wu ",
    "homepage_url": "https:\/\/github.com\/kevinwucodes\/gmail-quick-links",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "default.css"
            ],
            "js": [
                "react.js",
                "react-dom.js",
                "dist.gmailquicklinks.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ]
}