Time Labeler for Gmail™
This extension automatically labels your emails in your inbox based on how old they are.
什麼是Time Labeler for Gmail™?
Time Labeler for Gmail™是由Mark Montvai開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically labels your emails in your inbox based on how old they are.”。
擴展截圖
下載Time Labeler for Gmail™擴展crx文件
下載Time Labeler for Gmail™擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It's a friendly reminder to reply or do else something with it before it's too late. You are able to set the time it takes for an email to be put into one of the categories.
擴展基本資訊
名稱 | Time Labeler for Gmail™ |
ID | foaadeeadeihoakfoabhehkcolfabnpi |
官方網址 | https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi |
簡介 | This extension automatically labels your emails in your inbox based on how old they are. |
檔案大小 | 73.04 KB |
安裝次數 | 143 |
目前版本 | 1.7 |
更新時間 | 2014-06-17 |
上架時間 | 2014-06-17 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Mark Montvai |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time Labeler for Gmail\u2122", "description": "This extension automatically labels your emails in your inbox based on how old they are.", "version": "1.7", "permissions": [ "https:\/\/mail.google.com\/", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery.js", "moment.js", "hashchange.js", "script.js" ], "run_at": "document_idle" } ], "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |