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 |
官方網址 | 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" ] } |