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文件

下载Legit Profile Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        🍰 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"
        ]
    }
}