inboxy: Inbox Bundles for Gmail

Adds Google Inbox bundles to Gmail

inboxy: Inbox Bundles for Gmail란 무엇입니까?

inboxy: Inbox Bundles for Gmail은(는) https://inboxymail.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds Google Inbox bundles to Gmail"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

inboxy: Inbox Bundles for Gmail 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        inboxy makes it easier to manage your inbox, by bringing Google Inbox bundles to Gmail.

inboxy bundles together emails that share the same labels. To get started with bundling, simply create filters to apply labels to incoming emails. 

HIGHLIGHTS
- Messages with the same label are bundled together in your inbox
- Archive all bundled messages on the current page quickly
- Use email filters to bundle messages automatically
- Star a message to pin it outside of its bundle
- Intuitive date headings
- Supports light and dark themes

PRIVACY & SECURITY
inboxy is a lightweight visual layer over Gmail, and it uses Javascript and CSS to draw bundles.

With the default settings, inboxy does not handle any personal/sensitive data. In addition, inboxy is open-source, and all code is available on Github. However, if you choose to customize your extension settings, inboxy uses the Chrome Storage Sync API to sync settings to browsers that you're logged into. For further details, see the privacy policy at https://www.inboxymail.com#privacy-policy.

HAVE FEEDBACK?
Post issues to the Github repo at https://github.com/teresa-ou/inboxy/issues.

Visit https://www.inboxymail.com for more info.                    

확장 프로그램 기본 정보

이름 inboxy: Inbox Bundles for Gmail inboxy: Inbox Bundles for Gmail
ID clahkkinbdcdnogkkgmacmiknnamahha
공식 URL https://chromewebstore.google.com/detail/inboxy-inbox-bundles-for/clahkkinbdcdnogkkgmacmiknnamahha
설명 Adds Google Inbox bundles to Gmail
파일 크기 221 KB
설치 횟수 2,172
현재 버전 1.6.5
최근 업데이트 2023-02-28
출시 날짜 2020-06-28
평점 4.74/5 총 38 개의 평점
개발자 https://inboxymail.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.inboxymail.com
도움말 페이지 URL https://github.com/teresa-ou/inboxy/issues
개인정보 보호 정책 페이지 URL https://www.inboxymail.com/privacy-policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "inboxy: Inbox Bundles for Gmail",
    "version": "1.6.5",
    "description": "Adds Google Inbox bundles to Gmail",
    "homepage_url": "https:\/\/www.inboxymail.com",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/inboxy.png",
            "24": "icons\/[email protected]",
            "32": "icons\/[email protected]"
        },
        "default_popup": "popup\/popup.html",
        "show_matches": [
            "*:\/\/mail.google.com\/mail\/*"
        ]
    },
    "icons": {
        "16": "icons\/inboxy.png",
        "32": "icons\/[email protected]",
        "48": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*.svg"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}