Username linker for www.fetlife.com

Transform @handle mentions into clickable links

Username linker for www.fetlife.com란 무엇입니까?

Username linker for www.fetlife.com은(는) Marlinspike7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transform @handle mentions into clickable links"입니다.

Username linker for www.fetlife.com 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Username linker for www.fetlife.com Username linker for www.fetlife.com
ID alphbechbaaplgamiimnkjnhhecgeaeo
공식 URL https://chromewebstore.google.com/detail/username-linker-for-wwwfe/alphbechbaaplgamiimnkjnhhecgeaeo
설명 Transform @handle mentions into clickable links
파일 크기 4.79 KB
설치 횟수 24
현재 버전 2.0.1
최근 업데이트 2016-01-26
출시 날짜 2016-01-26
개발자 Marlinspike7
결제 유형 free
지원되는 언어 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
    }
}