Wishlist
Add stuff to your wishlist
Wat is Wishlist?
Wishlist is een Chrome-extensie ontwikkeld door akhildeveloper1093, en de belangrijkste functie is "Add stuff to your wishlist".
Extensie Screenshots
Download het CRX-bestand van de extensie Wishlist
Download Wishlist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Wishlist |
ID | dibfikgeakbalmgjhebajojjjhhdnmil |
Officiële URL | https://chromewebstore.google.com/detail/wishlist/dibfikgeakbalmgjhebajojjjhhdnmil |
Beschrijving | Add stuff to your wishlist |
Bestandsgrootte | 964 KB |
Aantal Installaties | 62 |
Huidige Versie | 1.1.8 |
Laatst Bijgewerkt | 2019-08-28 |
Publicatiedatum | 2019-08-28 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | akhildeveloper1093 |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |