Wishlist

Add stuff to your wishlist

Wishlistคืออะไร?

Wishlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akhildeveloper1093 และคุณลักษณะหลักของมันคือ "Add stuff to your wishlist"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wishlist

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    ]
}