Legit Profile Extension

Makes your social profile looks legit!

Legit Profile Extension란 무엇입니까?

Legit Profile Extension은(는) rizafahmi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes your social profile looks legit!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Legit Profile Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        🍰 makes your social profile such as github looks legit! Add PRO label for you who hasn't, and more to come.

The code is available at https://github.com/rizafahmi/legit-chrome-extension for you who wants to learn how to create chrome extension. Contribution welcome!                    

확장 프로그램 기본 정보

이름 Legit Profile Extension Legit Profile Extension
ID lkdnblfhfglpaiibilipagobbeaofphg
공식 URL https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg
설명 Makes your social profile looks legit!
파일 크기 7.82 KB
설치 횟수 16
현재 버전 0.2.0
최근 업데이트 2019-01-11
출시 날짜 2019-01-10
평점 5.00/5 총 1 개의 평점
개발자 rizafahmi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://rizafahmi.com/
도움말 페이지 URL https://github.com/rizafahmi/legit-chrome-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Legit Profile Extension",
    "description": "Makes your social profile looks legit!",
    "author": "Riza Fahmi",
    "version": "0.2.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "legit-icon.png",
        "default_title": "Shot and share!"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}