Wishlist
Add stuff to your wishlist
什么是Wishlist?
Wishlist是由akhildeveloper1093开发的Chrome扩展程序,该扩展的主要功能是“Add stuff to your wishlist”。
扩展截图
下载Wishlist扩展crx文件
下载Wishlist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Wishlist |
ID | dibfikgeakbalmgjhebajojjjhhdnmil |
官方URL | https://chromewebstore.google.com/detail/wishlist/dibfikgeakbalmgjhebajojjjhhdnmil |
简介 | Add stuff to your wishlist |
文件大小 | 964 KB |
安装次数 | 62 |
当前版本 | 1.1.8 |
更新时间 | 2019-08-28 |
上架时间 | 2019-08-28 |
评分 | 5.00/5 共6次评分 |
开发者 | akhildeveloper1093 |
付费类型 | free |
支持的语言 | 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" ] } |