Wishlist
Add stuff to your wishlist
What is Wishlist?
Wishlist is a Chrome extension developed by akhildeveloper1093, and its main feature is "Add stuff to your wishlist".
Extension Screenshots
Download Wishlist Extension CRX File
Download Wishlist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Wishlist |
ID | dibfikgeakbalmgjhebajojjjhhdnmil |
Official URL | https://chromewebstore.google.com/detail/wishlist/dibfikgeakbalmgjhebajojjjhhdnmil |
Description | Add stuff to your wishlist |
File Size | 964 KB |
Installation Count | 62 |
Current Version | 1.1.8 |
Last Updated | 2019-08-28 |
Publish Date | 2019-08-28 |
Rating | 5.00/5 Total 6 Ratings |
Developer | akhildeveloper1093 |
Payment Type | free |
Supported Languages | 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" ] } |