Gmail Row Highlighter
This extension is highlighting gmail rows with keyboard shortcuts.
Qu'est-ce que Gmail Row Highlighter ?
Gmail Row Highlighter est une extension Chrome développée par xstefank, et sa fonction principale est "This extension is highlighting gmail rows with keyboard shortcuts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail Row Highlighter
Téléchargez les fichiers d'extension Gmail Row Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | lcodjgpoghoileccehfoiiheicffmmia |
URL Officiel | https://chrome.google.com/webstore/detail/gmail-row-highlighter/lcodjgpoghoileccehfoiiheicffmmia |
Description | This extension is highlighting gmail rows with keyboard shortcuts. |
Taille du Fichier | 151 KB |
Nombre d'Installations | 138 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2017-02-19 |
Date de Publication | 2017-02-19 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | xstefank |
Type de Paiement | free |
Langues Prises en Charge | 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.2", "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 'unsafe-eval' 'sha512-ntVpZa8HMJ0Z3kzI7F7KkG5rI+9Hbh1ToZUtc9FyRioi5RAqwsInE7AjBinDvQ6SDF7DuMpZb44uhLZUYVGUBg=='; 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 } } |