Nike - Notify Me
Be notified when your size is now available again.
Was ist Nike - Notify Me?
Nike - Notify Me ist eine Chrome-Erweiterung, die von Renaud Anney entwickelt wurde, und ihr Hauptmerkmal ist "Be notified when your size is now available again.".
Erweiterungsscreenshots
Nike - Notify Me-Erweiterungs-CRX-Datei herunterladen
Laden Sie Nike - Notify Me-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hnajjdkmjekcoclmnmockmblibnmkbdb |
| Offizielle URL | https://chromewebstore.google.com/detail/nike-notify-me/hnajjdkmjekcoclmnmockmblibnmkbdb |
| Beschreibung | Be notified when your size is now available again. |
| Dateigröße | 47.51 KB |
| Installationsanzahl | 1,910 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2020-05-05 |
| Veröffentlichungsdatum | 2020-05-05 |
| Bewertung | 3.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Renaud Anney |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |