Wishlist Total

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

ما هو Wishlist Total؟

Wishlist Total هو إضافة Chrome تم تطويرها بواسطة crimsonfae، والميزة الرئيسية لها هي "amazon wishlist total chrome extension, totals all items in wishlist and displays the total".

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

قم بتنزيل ملفات الامتداد Wishlist Total بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
    ]
}