Legit Profile Extension

Makes your social profile looks legit!

Legit Profile Extension là gì?

Legit Profile Extension là một tiện ích mở rộng Chrome được phát triển bởi rizafahmi, và tính năng chính của nó là "Makes your social profile looks legit!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Legit Profile Extension

Tải xuống các tệp mở rộng Legit Profile Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        🍰 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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Legit Profile Extension Legit Profile Extension
ID lkdnblfhfglpaiibilipagobbeaofphg
URL Chính Thức https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg
Mô tả Makes your social profile looks legit!
Kích Thước Tệp 7.82 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2019-01-11
Ngày Phát Hành 2019-01-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rizafahmi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rizafahmi.com/
URL Trang Trợ Giúp https://github.com/rizafahmi/legit-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}