Fastmail Plus

A Chrome extension to make Fastmail web UI more usable and productive

Fastmail Plusคืออะไร?

Fastmail Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yoichiro Hasebe และคุณลักษณะหลักของมันคือ "A Chrome extension to make Fastmail web UI more usable and productive"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fastmail Plus

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

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

                        Fastmail Plus makes Fastmail (https://fastmail.com) web UI easier to use and more productive. 

Changelog:
0.2.17.2 Extra buttons overlapping problem fixed
0.2.17 Issues related to the search bar fixed
0.2.16 Badge notification for unread messages dropped
0.2.15 Reload button added to the reading pane button set 🔄

Features:
- Change focus using ⬆️ ⬇️ ⬅️ ➡️ cursor keys
- Badge notification for unread messages to Inbox
- Faster switch between different search modes 🔁
- Easier button operation in the reading pane
- Extra shortcut keys (Press ? key to show available shortcut keys)
- Fix the problem with Japanese IME in the default search input
- Extra "reply-to" folding
- Maximize the width of message/compose/note panes (default: disabled)
- Resizable compose/note textarea

See README at https://github.com/yohasebe/fastmail-plus                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fastmail Plus Fastmail Plus
ID ibgnnkojbkconppocnmdobeodcaijmfm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fastmail-plus/ibgnnkojbkconppocnmdobeodcaijmfm
คำอธิบาย A Chrome extension to make Fastmail web UI more usable and productive
ขนาดไฟล์ 7.64 MB
จำนวนการติดตั้ง 109
เวอร์ชันปัจจุบัน 0.2.17.2
อัปเดตครั้งล่าสุด 2023-03-02
วันที่เผยแพร่ 2022-03-19
ผู้พัฒนา Yoichiro Hasebe
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yohasebe/fastmail-plus
URL หน้าช่วยเหลือ https://github.com/yohasebe/fastmail-plus/issues
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fastmail Plus",
    "default_locale": "en",
    "version": "0.2.17.2",
    "description": "A Chrome extension to make Fastmail web UI more usable and productive",
    "icons": {
        "16": "images\/fastmail-plus-16.png",
        "48": "images\/fastmail-plus-48.png",
        "128": "images\/fastmail-plus-128.png"
    },
    "action": {
        "default_icon": "images\/fastmail-plus-128.png",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fastmail.com\/*"
            ],
            "js": [
                "libraries\/jquery-3.6.0.min.js",
                "libraries\/jquery-ui.min.js",
                "content\/setup.js",
                "content\/move_focus.js",
                "content\/search_fix.js",
                "content\/alternative_search.js",
                "content\/reading_pane_control.js",
                "content\/extra_shortcuts.js",
                "content\/fold_quote.js",
                "content\/maximize_message_width.js",
                "content\/main.js"
            ],
            "css": [
                "libraries\/jquery-ui.min.css",
                "content\/main.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "svg\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}