GMail Unread
Shows an 'Unread' button to filter emails by 'Unread' status.
什麼是GMail Unread?
GMail Unread是由Dillon Hafer開發的Chrome擴展程式,該擴展的主要功能是“Shows an 'Unread' button to filter emails by 'Unread' status.”。
擴展截圖
下載GMail Unread擴展crx文件
下載GMail Unread擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
名稱 | GMail Unread |
ID | fnjpldipmbkkjobnhfhdngjljhlabieb |
官方網址 | https://chromewebstore.google.com/detail/gmail-unread/fnjpldipmbkkjobnhfhdngjljhlabieb |
簡介 | Shows an 'Unread' button to filter emails by 'Unread' status. |
檔案大小 | 52.41 KB |
安裝次數 | 80 |
目前版本 | 1.0 |
更新時間 | 2015-06-08 |
上架時間 | 2015-06-08 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Dillon Hafer |
付費類型 | free |
擴展官網 | https://github.com/dillonhafer/gmail-unread |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GMail Unread", "version": "1.0", "description": "Shows an 'Unread' button to filter emails by 'Unread' status.", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "icon-19.png", "default_title": "Show unread", "default_popup": "popup.html" }, "permissions": [ "declarativeContent" ], "content_scripts": [ { "js": [ "unread.js" ], "matches": [ "https:\/\/mail.google.com\/*" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "manifest_version": 2 } |