Legit Profile Extension
Makes your social profile looks legit!
What is Legit Profile Extension?
Legit Profile Extension is a Chrome extension developed by rizafahmi, and its main feature is "Makes your social profile looks legit!".
Extension Screenshots
Download Legit Profile Extension Extension CRX File
Download Legit Profile Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
🍰 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!
Extension Basic Information
Name | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
Official URL | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Description | Makes your social profile looks legit! |
File Size | 7.82 KB |
Installation Count | 16 |
Current Version | 0.2.0 |
Last Updated | 2019-01-11 |
Publish Date | 2019-01-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | rizafahmi |
[email protected] | |
Payment Type | free |
Extension Website | https://rizafahmi.com/ |
Help Page URL | https://github.com/rizafahmi/legit-chrome-extension |
Supported Languages | 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" ] } } |