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