Legit Profile Extension

Makes your social profile looks legit!

Legit Profile Extensionคืออะไร?

Legit Profile Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rizafahmi และคุณลักษณะหลักของมันคือ "Makes your social profile looks legit!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Legit Profile Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}