Gmail Floating Subject

Make email's subject float on scroll

O que é Gmail Floating Subject?

Gmail Floating Subject é uma extensão do Chrome desenvolvida por Assaf Shahaf, e sua principal característica é "Make email's subject float on scroll".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail Floating Subject

Baixe arquivos de extensão Gmail Floating Subject 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

                        Make the subject of an email float on top of the email upon scroll.

See screenshot in order to review the script for security reasons.                    

Informações Básicas da Extensão

Nome Gmail Floating Subject Gmail Floating Subject
ID phjkbhcdnomlkfcbcebgbjnfcndfadfh
URL Oficial https://chrome.google.com/webstore/detail/gmail-floating-subject/phjkbhcdnomlkfcbcebgbjnfcndfadfh
Descrição Make email's subject float on scroll
Tamanho do Arquivo 64.94 KB
Contagem de Instalações 45
Versão Atual 0.0.0.12
Última Atualização 2015-10-04
Data de Publicação 2015-10-04
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Assaf Shahaf
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Floating Subject",
    "version": "0.0.0.12",
    "manifest_version": 2,
    "description": "Make email's subject float on scroll",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "icon.png",
        "script.js"
    ]
}