Nike - Notify Me
Be notified when your size is now available again.
Cos'è Nike - Notify Me?
Nike - Notify Me è un'estensione di Chrome sviluppata da Renaud Anney, e la sua funzione principale è "Be notified when your size is now available again.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Nike - Notify Me
Scarica i file di estensione Nike - Notify Me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Nike - Notify Me |
ID | hnajjdkmjekcoclmnmockmblibnmkbdb |
URL Ufficiale | https://chromewebstore.google.com/detail/nike-notify-me/hnajjdkmjekcoclmnmockmblibnmkbdb |
Descrizione | Be notified when your size is now available again. |
Dimensione del File | 47.51 KB |
Conteggio Installazioni | 1,910 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-05-05 |
Data di Pubblicazione | 2020-05-05 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | Renaud Anney |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |