Wishlist Total

amazon wishlist total chrome extension, totals all items in wishlist and displays the total

Wishlist Total क्या है?

Wishlist Total crimsonfae द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "amazon wishlist total chrome extension, totals all items in wishlist and displays the total"।

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

crx प्रारूप में Wishlist Total एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        amazon wishlist total chrome extension, totals all items in wishlist and displays the total                    

एक्सटेंशन की मूल जानकारी

नाम Wishlist Total Wishlist Total
ID efcojkbaeocjjmdhbdcdkadnccmjbgog
आधिकारिक URL https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog
विवरण amazon wishlist total chrome extension, totals all items in wishlist and displays the total
फ़ाइल का आकार 82.81 KB
स्थापना संख्या 98
वर्तमान संस्करण 1.0
अंतिम अपडेट 2014-02-05
प्रकाशन तिथि 2014-02-05
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर crimsonfae
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/howaboutudance/wishlist-total
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wishlist Total",
    "version": "1.0",
    "author": "Michael Penhallegon",
    "page_action": {
        "default_icon": "static\/wishlist.png",
        "default_popup": "popup.html"
    },
    "background": {
        "script": [
            ".\/js\/background.js"
        ],
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.amazon.com\/gp\/registry*"
            ],
            "js": [
                ".\/lib\/jquery-2.0.3.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/amazon.com\/*",
        "http:\/\/www.amazon.com\/gp\/registry\/*"
    ]
}