Username linker for www.fetlife.com

Transform @handle mentions into clickable links

¿Qué es Username linker for www.fetlife.com?

Username linker for www.fetlife.com es una extensión de Chrome desarrollada por Marlinspike7, y su función principal es "Transform @handle mentions into clickable links".

Descargar Archivo CRX de la Extensión Username linker for www.fetlife.com

Descarga archivos de extensión Username linker for www.fetlife.com en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre 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
Descripción Transform @handle mentions into clickable links
Tamaño del Archivo 4.79 KB
Cantidad de Instalaciones 24
Versión Actual 2.0.1
Última Actualización 2016-01-26
Fecha de Publicación 2016-01-26
Desarrollador Marlinspike7
Tipo de Pago free
Idiomas Soportados 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
    }
}