Gmail Quick Links

Use Gmail labels as Quick Links

Gmail Quick Linksคืออะไร?

Gmail Quick Links เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yury Ershov และคุณลักษณะหลักของมันคือ "Use Gmail labels as Quick Links"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Quick Links

ดาวน์โหลดไฟล์ส่วนขยาย Gmail Quick Links ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}