Gmail Row Highlighter
This extension is highlighting gmail rows with keyboard shortcuts.
Gmail Row Highlighterคืออะไร?
Gmail Row Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xstefank122 และคุณลักษณะหลักของมันคือ "This extension is highlighting gmail rows with keyboard shortcuts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Row Highlighter
ดาวน์โหลดไฟล์ส่วนขยาย Gmail Row Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is highlighting gmail rows with keyboard shortcuts. This extension is highlighting current row in Gmail with keyboard controls. User is allowed to change the colors for read, unread and selected emails directly and dynamically after opening the extension popup. This project is opensource and it is hosted on Github: https://github.com/xstefank/gmail-row-highlight Contributions and comments are welcome. This is an updated version of the extension https://chrome.google.com/webstore/detail/gmail-row-highlighter/lcodjgpoghoileccehfoiiheicffmmia to which the author lost access
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jonpcogoghigmfecjagaeehogbioaell |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/gmail-row-highlighter/jonpcogoghigmfecjagaeehogbioaell |
คำอธิบาย | This extension is highlighting gmail rows with keyboard shortcuts. |
ขนาดไฟล์ | 151 KB |
จำนวนการติดตั้ง | 30 |
เวอร์ชันปัจจุบัน | 1.2.3 |
อัปเดตครั้งล่าสุด | 2019-01-05 |
วันที่เผยแพร่ | 2019-01-05 |
ผู้พัฒนา | xstefank122 |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/xstefank/gmail-row-highlight |
URL หน้าช่วยเหลือ | https://github.com/xstefank/gmail-row-highlight/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Row Highlighter", "description": "This extension is highlighting gmail rows with keyboard shortcuts.", "version": "1.2.3", "icons": { "16": "images\/gmail16.png", "48": "images\/gmail48.png", "128": "images\/gmail128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "mutation-summary.js", "content.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha512-ntVpZa8HMJ0Z3kzI7F7KkG5rI+9Hbh1ToZUtc9FyRioi5RAqwsInE7AjBinDvQ6SDF7DuMpZb44uhLZUYVGUBg==' 'sha512-U6P\/RClAL500os+uHYUu8EOBRrKj0h2dbsFU\/5U6+BfAccWV0tGsw\/SMSZvL\/DuuVn0H4Ym3FKYVjFYK+abUbw=='; object-src 'self'", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Gmail Row Highlighter", "default_icon": { "16": "images\/gmail16.png", "48": "images\/gmail48.png", "128": "images\/gmail128.png" }, "default_popup": "popup.html" }, "permissions": [], "web_accessible_resources": [], "homepage_url": "https:\/\/github.com\/xstefank\/gmail-row-highlight", "options_ui": { "page": "popup.html", "chrome_style": true } } |