Fastmail Plus

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

Fastmail Plus란 무엇입니까?

Fastmail Plus은(는) Yoichiro Hasebe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to make Fastmail web UI more usable and productive"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Fastmail Plus 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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