HyperG - Automatic Hyperlinks In Gmail

HyperG - Automatic Hyperlinks In Gmail

O que é HyperG - Automatic Hyperlinks In Gmail?

HyperG - Automatic Hyperlinks In Gmail é uma extensão do Chrome desenvolvida por kcurtis, e sua principal característica é "HyperG - Automatic Hyperlinks In Gmail".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão HyperG - Automatic Hyperlinks In Gmail

Baixe arquivos de extensão HyperG - Automatic Hyperlinks In Gmail 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

                        Automatically create hyperlinks in gmail. This extension will save you a ton of time

Simply type a word or phrase and HyperG will automatically convert it into a hyperlink.

Great for creating email signatures, affiliate links, commonly used words or phrases.

Examples: 
 - add matching text "google" with replacement of "google" will automatically link to "http://www.google.com/"
- adding matching text "tseg" with replacement of The Search Engine Guys will automatically link to "http://www.tseg.com/"

Just make sure to use html in the replacement box.

Enjoy!                    

Informações Básicas da Extensão

Nome HyperG - Automatic Hyperlinks In Gmail HyperG - Automatic Hyperlinks In Gmail
ID achofajdllpmammddgfibkchijpgepgo
URL Oficial https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo
Descrição HyperG - Automatic Hyperlinks In Gmail
Tamanho do Arquivo 188 KB
Contagem de Instalações 295
Versão Atual 1.0.0
Última Atualização 2017-04-14
Data de Publicação 2017-04-14
Classificação 4.50/5 Total de 4 Avaliações
Desenvolvedor kcurtis
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HyperG - Automatic Hyperlinks In Gmail",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "HyperG - Automatic Hyperlinks In Gmail",
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_title": "HyperG - Automatic Hyperlinks In Gmail"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png"
    },
    "options_page": "ui\/Rules.html",
    "web_accessible_resources": [
        "\/ui\/*"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ]
}