Gmail HTML basic
A extension for whom using Gmail HTML Basic
Gmail HTML basicคืออะไร?
Gmail HTML basic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย helenchen และคุณลักษณะหลักของมันคือ "A extension for whom using Gmail HTML Basic"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail HTML basic
ดาวน์โหลดไฟล์ส่วนขยาย Gmail HTML basic ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension was mainly inspired by a userscript named GMail Basic HTML Enhancement. This extension enabled user * Relocation labels to top of messages list * Select All button * Search shortcut like :unread, 2 week older * Save the last selected action in [Go] menu * Create [New label] in filter wizard, no need to create it ahead
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gmail HTML basic |
ID | fglojcpjnipennndfejiehbndbidenbh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gmail-html-basic/fglojcpjnipennndfejiehbndbidenbh |
คำอธิบาย | A extension for whom using Gmail HTML Basic |
ขนาดไฟล์ | 63.72 KB |
จำนวนการติดตั้ง | 2,279 |
เวอร์ชันปัจจุบัน | 49 |
อัปเดตครั้งล่าสุด | 2020-04-06 |
วันที่เผยแพร่ | 2020-04-06 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | helenchen |
ประเภทการชำระเงิน | in_app |
ภาษาที่รองรับ | en |
manifest.json | |
{ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwV52R58GVp8NIyGHbQthGdVx1JbXiPmrSQgO1Vh0szX7g1tLkdTOXzb7TG\/KSZk1GLiyv7Z3vFhPPGqeR44z98Xv4saqN2TRzGsmnRYzyejrWZMu74njpHNAxkwLou6vn8M2wacTjW0JMReKXbM0LFPFuah4kYECND3pA7swfkYqLsTF8qAAzeReJeCWqNLy9BTBmdauB1ptwAMbR5BoysJdDS0cBwjJs4EFmKjaD5JpaiZmbDxGzMNo+B\/yi1oErsS2Auj8Tn\/Sz4P+dbZZX5K4bIjD41yhSnh\/sKIM\/HzJydJlM26gQNUYjnWzaRh77Zjkc\/pBBGpIdpyLzbxnBQIDAQAB", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*\/h\/*", "https:\/\/mail.google.com\/mail\/h\/*" ], "js": [ "jquery-3.4.1.min.js", "debug.js", "labelRelocation.js", "searches.js", "selectAll.js", "createLabel.js" ], "run_at": "document_end" } ], "description": "A extension for whom using Gmail HTML Basic", "default_locale": "en", "icons": { "128": "images\/gmail128.png", "32": "images\/gmail32.png", "48": "images\/gmail48.png", "16": "images\/gmail16.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "128": "images\/gmail128.png", "32": "images\/gmail32.png", "48": "images\/gmail48.png", "16": "images\/gmail16.png" }, "default_popup": "popup.html" }, "version": "49", "manifest_version": 2, "permissions": [ "activeTab", "declarativeContent", "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail HTML basic" } |