Like+
Get more friends, instantly.
Что такое Like+?
Like+ - это расширение Chrome, разработанное Clément Walter, и его основная функция - "Get more friends, instantly.".
Снимки экрана расширения
Скачать файл CRX расширения Like+
Скачайте файлы расширений Like+ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Summer is over, pain is deep. Holidays are over, friends did better. FOMO. This add simply makes you have a better day while looking at your Facebook profile page. YOU'RE THE ONE.
Product log :
- v0.1 : generate a random number of likes between 5000 and 6000
- v0.2 : add a slider to update mood factor
- v0.3 : add your favorite name to the like field
- v0.4 : auto-increase the number of likes
- v0.5 : checkbox to disable add in popup
- v0.6 : Fix span class
Product backlog :
- v1.0 : auto-generated comments Основная информация о расширении
| Название | |
| ID | kdganehgjojfinlcadhemeijollmlnbf |
| Официальный URL | https://chromewebstore.google.com/detail/like+/kdganehgjojfinlcadhemeijollmlnbf |
| Описание | Get more friends, instantly. |
| Размер файла | 917 KB |
| Количество установок | 87 |
| Текущая Версия | 0.6 |
| Последнее Обновление | 2019-01-02 |
| Дата публикации | 2019-01-02 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Clément Walter |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/ClementWalter/like-plus |
| Поддерживаемые языки | fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Like+",
"version": "0.6",
"description": "Get more friends, instantly.",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "like16.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
"content.js"
],
"all_frames": true
}
],
"icons": {
"16": "like16.png",
"128": "like128.png"
},
"permissions": [
"storage",
"tabs"
]
} | |