Legit Profile Extension
Makes your social profile looks legit!
Apa itu Legit Profile Extension?
Legit Profile Extension adalah ekstensi Chrome yang dikembangkan oleh rizafahmi, dan fitur utamanya adalah "Makes your social profile looks legit!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Legit Profile Extension
Unduh file ekstensi Legit Profile Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
🍰 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!
Informasi Dasar Ekstensi
Nama | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
URL Resmi | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Deskripsi | Makes your social profile looks legit! |
Ukuran File | 7.82 KB |
Jumlah Instalasi | 16 |
Versi Saat Ini | 0.2.0 |
Terakhir Diperbarui | 2019-01-11 |
Tanggal Publikasi | 2019-01-10 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | rizafahmi |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://rizafahmi.com/ |
URL Halaman Bantuan | https://github.com/rizafahmi/legit-chrome-extension |
Bahasa yang Didukung | 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" ] } } |