Nike - Notify Me
Be notified when your size is now available again.
Что такое Nike - Notify Me?
Nike - Notify Me - это расширение Chrome, разработанное Renaud Anney, и его основная функция - "Be notified when your size is now available again.".
Снимки экрана расширения
Скачать файл CRX расширения Nike - Notify Me
Скачайте файлы расширений Nike - Notify Me в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Nike Store - www.nike.com :
Right Click on your size and get notified if your product comes back in stock — it's easy!
Clic droit sur votre taille ou pointure et vous serez notifié lorsque le produit sera de nouveau disponible !
Haga clic derecho en su talla y reciba una notificación si su producto vuelve a estar disponible, ¡es fácil! Основная информация о расширении
| Название | |
| ID | hnajjdkmjekcoclmnmockmblibnmkbdb |
| Официальный URL | https://chromewebstore.google.com/detail/nike-notify-me/hnajjdkmjekcoclmnmockmblibnmkbdb |
| Описание | Be notified when your size is now available again. |
| Размер файла | 47.51 KB |
| Количество установок | 1,910 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2020-05-05 |
| Дата публикации | 2020-05-05 |
| Рейтинг | 3.00/5 Всего 4 оценок |
| Разработчик | Renaud Anney |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Nike - Notify Me",
"version": "1.0",
"description": "Be notified when your size is now available again.",
"permissions": [
"contextMenus",
"storage",
"notifications"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/www.nike.com\/*"
],
"js": [
"content.js"
]
}
],
"options_page": "options.html",
"browser_action": {
"default_icon": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
},
"default_popup": "options.html"
},
"icons": {
"16": "images\/get_started16.png",
"32": "images\/get_started32.png",
"48": "images\/get_started48.png",
"128": "images\/get_started128.png"
},
"manifest_version": 2
} | |