Username linker for www.fetlife.com

Transform @handle mentions into clickable links

O que é Username linker for www.fetlife.com?

Username linker for www.fetlife.com é uma extensão do Chrome desenvolvida por Marlinspike7, e sua principal característica é "Transform @handle mentions into clickable links".

Baixar o arquivo CRX da Extensão Username linker for www.fetlife.com

Baixe arquivos de extensão Username linker for www.fetlife.com 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

                        Known bugs:
-when editing a "linked" text box (caption, etc), the entire HTML tag for the link shows up. This is mostly a fetlife bug, but I will attempt to fix it on my end.
-@OP or @me get directed to the literal profiles instead to the original poster or the person who made the comment/post
-Sometimes pictures down-size slightly with the extension enabled. I believe a new HTML element is getting created at the end of the caption, which causes the page to re-arrange content                    

Informações Básicas da Extensão

Nome Username linker for www.fetlife.com Username linker for www.fetlife.com
ID alphbechbaaplgamiimnkjnhhecgeaeo
URL Oficial https://chromewebstore.google.com/detail/username-linker-for-wwwfe/alphbechbaaplgamiimnkjnhhecgeaeo
Descrição Transform @handle mentions into clickable links
Tamanho do Arquivo 4.79 KB
Contagem de Instalações 24
Versão Atual 2.0.1
Última Atualização 2016-01-26
Data de Publicação 2016-01-26
Desenvolvedor Marlinspike7
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Username linker for www.fetlife.com",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "Transform @handle mentions into clickable links",
    "permissions": [
        "https:\/\/*.fetlife.com\/*",
        "webRequest",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fetlife.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}