Wishlist

Add stuff to your wishlist

Wishlist क्या है?

Wishlist akhildeveloper1093 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add stuff to your wishlist"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Wishlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}