Gmail Quick Links

Use Gmail labels as Quick Links

Gmail Quick Links란 무엇입니까?

Gmail Quick Links은(는) Yury Ershov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Gmail labels as Quick Links"입니다.

확장 프로그램 스크린샷

screenshot

Gmail Quick Links 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Featuring Gmail: Add labels to quickly access any saved query, email, settings, or any other thing within Gmail.

The extension was inspired by Gmail Lab "Quick Links".

*NOTE that the links will not appear in a separate panel but rather will be mixed together with LABELS.

Import from Quick Links Lab is supported 1-by-1 and in bulk by clicking the icon next to the quick link.

Gmail Lab "Quick Links" by Dan P original description:
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.

CHANGELOG:

== 1.4.1

Fix quicklink labels in new UI

== 1.4.0

New Gmail UI adjustment

== 1.3.0

Added on-page button to create quick links.

== 1.2.6

Visual indication of the newly added labels.
Fixed displaying of Unicode labels.

== 1.2

Hide link labels from "Label" and "Move" menus

== 1.1

Import existing quick links to extension: per-label and bulk

== 1.0

Use specially formatted Gmail labels as links:
"LABEL : LINK"

Clicking on extension icon opens an "Add Link" dialog                    

확장 프로그램 기본 정보

이름 Gmail Quick Links Gmail Quick Links
ID labcipijkengfghbojibaibggodjhfba
공식 URL https://chromewebstore.google.com/detail/gmail-quick-links/labcipijkengfghbojibaibggodjhfba
설명 Use Gmail labels as Quick Links
파일 크기 20.96 KB
설치 횟수 457
현재 버전 1.4.1
최근 업데이트 2018-04-30
출시 날짜 2018-04-30
평점 4.07/5 총 14 개의 평점
개발자 Yury Ershov
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Quick Links",
    "short_name": "Gmail Quick Links",
    "version": "1.4.1",
    "description": "Use Gmail labels as Quick Links",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "Create Gmail Quick Link"
    },
    "web_accessible_resources": [
        "icon128.png",
        "icon16.png",
        "icon48.png",
        "cleanup_labels_menu.js"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "all_frames": false,
            "js": [
                "content_document_start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "all_frames": false,
            "js": [
                "content_document_loaded.js"
            ],
            "run_at": "document_idle"
        }
    ]
}