Nike - Notify Me
Be notified when your size is now available again.
Co to jest Nike - Notify Me?
Nike - Notify Me to rozszerzenie Chrome opracowane przez Renaud Anney, a jego główną funkcją jest „Be notified when your size is now available again.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Nike - Notify Me
Pobierz pliki rozszerzeń Nike - Notify Me 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
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! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | hnajjdkmjekcoclmnmockmblibnmkbdb |
| Oficjalny URL | https://chromewebstore.google.com/detail/nike-notify-me/hnajjdkmjekcoclmnmockmblibnmkbdb |
| Opis | Be notified when your size is now available again. |
| Rozmiar pliku | 47.51 KB |
| Liczba instalacji | 1,910 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2020-05-05 |
| Data Publikacji | 2020-05-05 |
| Ocena | 3.00/5 Łącznie 4 Oceny |
| Deweloper | Renaud Anney |
| Typ Płatności | free |
| Obsługiwane Języki | 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
} | |