Legit Profile Extension
Makes your social profile looks legit!
Wat is Legit Profile Extension?
Legit Profile Extension is een Chrome-extensie ontwikkeld door rizafahmi, en de belangrijkste functie is "Makes your social profile looks legit!".
Extensie Screenshots
Download het CRX-bestand van de extensie Legit Profile Extension
Download Legit Profile Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
🍰 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!
Basisinformatie over de Extensie
Naam | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
Officiële URL | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Beschrijving | Makes your social profile looks legit! |
Bestandsgrootte | 7.82 KB |
Aantal Installaties | 16 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2019-01-11 |
Publicatiedatum | 2019-01-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | rizafahmi |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://rizafahmi.com/ |
Help Pagina-URL | https://github.com/rizafahmi/legit-chrome-extension |
Ondersteunde Talen | 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" ] } } |