Gmail Row Highlighter

This extension is highlighting gmail rows with keyboard shortcuts.

O que é Gmail Row Highlighter?

Gmail Row Highlighter é uma extensão do Chrome desenvolvida por xstefank, e sua principal característica é "This extension is highlighting gmail rows with keyboard shortcuts.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Gmail Row Highlighter

Baixe arquivos de extensão Gmail Row Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Gmail Row Highlighter Gmail Row Highlighter
ID lcodjgpoghoileccehfoiiheicffmmia
URL Oficial https://chrome.google.com/webstore/detail/gmail-row-highlighter/lcodjgpoghoileccehfoiiheicffmmia
Descrição This extension is highlighting gmail rows with keyboard shortcuts.
Tamanho do Arquivo 151 KB
Contagem de Instalações 138
Versão Atual 1.2.2
Última Atualização 2017-02-19
Data de Publicação 2017-02-19
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor xstefank
Tipo de Pagamento free
Idiomas Suportados 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
    }
}