Wishlist

Add stuff to your wishlist

ما هو Wishlist؟

Wishlist هو إضافة Chrome تم تطويرها بواسطة akhildeveloper1093، والميزة الرئيسية لها هي "Add stuff to your wishlist".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Wishlist

قم بتنزيل ملفات الامتداد Wishlist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}