Legit Profile Extension
Makes your social profile looks legit!
Что такое Legit Profile Extension?
Legit Profile Extension - это расширение Chrome, разработанное rizafahmi, и его основная функция - "Makes your social profile looks legit!".
Снимки экрана расширения
Скачать файл CRX расширения Legit Profile Extension
Скачайте файлы расширений Legit Profile Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
🍰 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! Основная информация о расширении
| Название | |
| ID | lkdnblfhfglpaiibilipagobbeaofphg |
| Официальный URL | https://chromewebstore.google.com/detail/legit-profile-extension/lkdnblfhfglpaiibilipagobbeaofphg |
| Описание | Makes your social profile looks legit! |
| Размер файла | 7.82 KB |
| Количество установок | 16 |
| Текущая Версия | 0.2.0 |
| Последнее Обновление | 2019-01-11 |
| Дата публикации | 2019-01-10 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | rizafahmi |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://rizafahmi.com/ |
| URL страницы помощи | https://github.com/rizafahmi/legit-chrome-extension |
| Поддерживаемые языки | 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"
]
}
} | |