Legit Profile Extension
Makes your social profile looks legit!
Cos'è Legit Profile Extension?
Legit Profile Extension è un'estensione di Chrome sviluppata da rizafahmi, e la sua funzione principale è "Makes your social profile looks legit!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Legit Profile Extension
Scarica i file di estensione Legit Profile Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
🍰 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!
Informazioni di Base sull'Estensione
Nome | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
URL Ufficiale | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Descrizione | Makes your social profile looks legit! |
Dimensione del File | 7.82 KB |
Conteggio Installazioni | 16 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2019-01-11 |
Data di Pubblicazione | 2019-01-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | rizafahmi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://rizafahmi.com/ |
URL della Pagina di Aiuto | https://github.com/rizafahmi/legit-chrome-extension |
Lingue Supportate | 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" ] } } |