Wishlist

Add stuff to your wishlist

Wishlist là gì?

Wishlist là một tiện ích mở rộng Chrome được phát triển bởi akhildeveloper1093, và tính năng chính của nó là "Add stuff to your wishlist".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wishlist

Tải xuống các tệp mở rộng Wishlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wishlist Wishlist
ID dibfikgeakbalmgjhebajojjjhhdnmil
URL Chính Thức https://chromewebstore.google.com/detail/wishlist/dibfikgeakbalmgjhebajojjjhhdnmil
Mô tả Add stuff to your wishlist
Kích Thước Tệp 964 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.1.8
Cập Nhật Lần Cuối 2019-08-28
Ngày Phát Hành 2019-08-28
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển akhildeveloper1093
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}