Username linker for www.fetlife.com

Transform @handle mentions into clickable links

Cos'è Username linker for www.fetlife.com?

Username linker for www.fetlife.com è un'estensione di Chrome sviluppata da Marlinspike7, e la sua funzione principale è "Transform @handle mentions into clickable links".

Scarica il file CRX dell'estensione Username linker for www.fetlife.com

Scarica i file di estensione Username linker for www.fetlife.com in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Username linker for www.fetlife.com Username linker for www.fetlife.com
ID alphbechbaaplgamiimnkjnhhecgeaeo
URL Ufficiale https://chromewebstore.google.com/detail/username-linker-for-wwwfe/alphbechbaaplgamiimnkjnhhecgeaeo
Descrizione Transform @handle mentions into clickable links
Dimensione del File 4.79 KB
Conteggio Installazioni 24
Versione Corrente 2.0.1
Ultimo Aggiornamento 2016-01-26
Data di Pubblicazione 2016-01-26
Sviluppatore Marlinspike7
Tipo di Pagamento free
Lingue Supportate 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
    }
}