Wishlist
Add stuff to your wishlist
Was ist Wishlist?
Wishlist ist eine Chrome-Erweiterung, die von akhildeveloper1093 entwickelt wurde, und ihr Hauptmerkmal ist "Add stuff to your wishlist".
Erweiterungsscreenshots
Wishlist-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wishlist-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
Keep all your wishlist items from different websites in one place! Just click the "Add to wishlist" button when you're on the item's page, and it'll appear in your wishlist until you don't want it anymore. Currently supported websites: - Amazon - Ebay - Walmart - Etsy - Blinq - Target - AliExpress - Craigslist
Grundlegende Informationen zur Erweiterung
Name | Wishlist |
ID | dibfikgeakbalmgjhebajojjjhhdnmil |
Offizielle URL | https://chromewebstore.google.com/detail/wishlist/dibfikgeakbalmgjhebajojjjhhdnmil |
Beschreibung | Add stuff to your wishlist |
Dateigröße | 964 KB |
Installationsanzahl | 62 |
Aktuelle Version | 1.1.8 |
Letztes Update | 2019-08-28 |
Veröffentlichungsdatum | 2019-08-28 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | akhildeveloper1093 |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wishlist", "version": "1.1.8", "manifest_version": 2, "description": "Add stuff to your wishlist", "homepage_url": "https:\/\/github.com\/akhilgupta1093\/Wishlist", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/*.amazon.com\/*", "https:\/\/*.ebay.com\/*", "https:\/\/*.walmart.com\/*", "https:\/\/*.etsy.com\/*", "https:\/\/*.blinq.com\/*", "https:\/\/*.target.com\/*", "https:\/\/*.aliexpress.com\/*", "https:\/\/*.craigslist.org\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*.amazon.com\/*", "https:\/\/*.ebay.com\/*", "https:\/\/*.walmart.com\/*", "https:\/\/*.etsy.com\/*", "https:\/\/*.blinq.com\/*", "https:\/\/*.target.com\/*", "https:\/\/*.aliexpress.com\/*", "https:\/\/*.craigslist.org\/*" ], "js": [ "inject.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_title": "Wishlist" }, "web_accessible_resources": [ "images\/*.png", "*.jpg", "*.JPG" ] } |