Legit Profile Extension
Makes your social profile looks legit!
Co to jest Legit Profile Extension?
Legit Profile Extension to rozszerzenie Chrome opracowane przez rizafahmi, a jego główną funkcją jest „Makes your social profile looks legit!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Legit Profile Extension
Pobierz pliki rozszerzeń Legit Profile Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
🍰 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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | lkdnblfhfglpaiibilipagobbeaofphg |
| Oficjalny URL | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
| Opis | Makes your social profile looks legit! |
| Rozmiar pliku | 7.82 KB |
| Liczba instalacji | 16 |
| Aktualna Wersja | 0.2.0 |
| Ostatnia Aktualizacja | 2019-01-11 |
| Data Publikacji | 2019-01-10 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | rizafahmi |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://rizafahmi.com/ |
| Adres URL Strony Pomocy | https://github.com/rizafahmi/legit-chrome-extension |
| Obsługiwane Języki | 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"
]
}
} | |