Legit Profile Extension
Makes your social profile looks legit!
Qu'est-ce que Legit Profile Extension ?
Legit Profile Extension est une extension Chrome développée par rizafahmi, et sa fonction principale est "Makes your social profile looks legit!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Legit Profile Extension
Téléchargez les fichiers d'extension Legit Profile Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
🍰 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!
Informations de Base sur l'Extension
Nom | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
URL Officiel | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Description | Makes your social profile looks legit! |
Taille du Fichier | 7.82 KB |
Nombre d'Installations | 16 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2019-01-11 |
Date de Publication | 2019-01-10 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | rizafahmi |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://rizafahmi.com/ |
URL de la Page d'Aide | https://github.com/rizafahmi/legit-chrome-extension |
Langues Prises en Charge | 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" ] } } |