Gmail Labels as Tabs

Organize your Gmail mailbox labels as tabs.

Gmail Labels as Tabs란 무엇입니까?

Gmail Labels as Tabs은(는) Puru Tuladhar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organize your Gmail mailbox labels as tabs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Gmail Labels as Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        "Gmail Labels as Tabs" is an open-source email productivity extension for Google Chrome that customizes your Gmail interface by adding Gmail labels as tabs.

★ Organize your labels as Gmail tabs
★ Drag and drop to re-arrange tabs
★ Shows unread messages badge
★ Supports dark mode theme
★ Synchronizes extension settings with your Gmail account
★ 100% open-source and ads-free - we don’t mine your data, we don’t sell your data

👨‍💻 Github
▶  https://github.com/tuladhar/gmail-labels-as-tabs

❤️ Support my work
 ▶ https://tuladhar.github.io/gmail-labels-as-tabs/DONATION                    

확장 프로그램 기본 정보

이름 Gmail Labels as Tabs Gmail Labels as Tabs
ID fadllmncpdhaindodhlgbheephdkopih
공식 URL https://chromewebstore.google.com/detail/gmail-labels-as-tabs/fadllmncpdhaindodhlgbheephdkopih
설명 Organize your Gmail mailbox labels as tabs.
파일 크기 135 KB
설치 횟수 215
현재 버전 2.2.4
최근 업데이트 2020-08-25
출시 날짜 2020-07-23
평점 3.75/5 총 4 개의 평점
개발자 Puru Tuladhar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tuladhar.github.io/gmail-labels-as-tabs
도움말 페이지 URL https://github.com/tuladhar/gmail-labels-as-tabs
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Labels as Tabs",
    "version": "2.2.4",
    "description": "Organize your Gmail mailbox labels as tabs.",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "storage",
        "identity"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icons\/16.png",
            "32": "images\/icons\/32.png",
            "48": "images\/icons\/48.png",
            "128": "images\/icons\/128.png"
        }
    },
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "128": "images\/icons\/128.png"
    },
    "oauth2": {
        "client_id": "182667075532-ksut7cmajcg9qgvic145f469je6ldn11.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/gmail.labels"
        ]
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/ui.js"
            ],
            "css": [
                "css\/ui.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/; object-src 'self'",
    "web_accessible_resources": [
        "font\/*.woff2"
    ]
}