Legit Profile Extension
Makes your social profile looks legit!
Hvad er Legit Profile Extension?
Legit Profile Extension er en Chrome-udvidelse udviklet af rizafahmi, og dens hovedfunktion er "Makes your social profile looks legit!".
Udvidelsesskærmbilleder
Download Legit Profile Extension-udvidelses-CRX-fil
Download Legit Profile Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
🍰 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!
Grundlæggende oplysninger om udvidelsen
Navn | Legit Profile Extension |
ID | lkdnblfhfglpaiibilipagobbeaofphg |
Officiel URL | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
Beskrivelse | Makes your social profile looks legit! |
Filstørrelse | 7.82 KB |
Antal Installationer | 16 |
Nuværende Version | 0.2.0 |
Senest Opdateret | 2019-01-11 |
Udgivelsesdato | 2019-01-10 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | rizafahmi |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://rizafahmi.com/ |
Hjælpeside-URL | https://github.com/rizafahmi/legit-chrome-extension |
Understøttede Sprog | 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" ] } } |