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.”。
擴展截圖
下載Gmail Labels as Tabs擴展crx文件
下載Gmail Labels as Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
"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 |
ID | fadllmncpdhaindodhlgbheephdkopih |
官方網址 | 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" ] } |