Gmail Row Highlighter
This extension is highlighting gmail rows with keyboard shortcuts.
什麼是Gmail Row Highlighter?
Gmail Row Highlighter是由xstefank122開發的Chrome擴展程式,該擴展的主要功能是“This extension is highlighting gmail rows with keyboard shortcuts.”。
擴展截圖
下載Gmail Row Highlighter擴展crx文件
下載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 |
官方網址 | 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 } } |