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™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mark Montvai และคุณลักษณะหลักของมันคือ "This extension automatically labels your emails in your inbox based on how old they are."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time Labeler for Gmail™
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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 } } |