Wishlist Total

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

Co to jest Wishlist Total?

Wishlist Total to rozszerzenie Chrome opracowane przez crimsonfae, a jego główną funkcją jest „amazon wishlist total chrome extension, totals all items in wishlist and displays the total”.

Pobierz plik CRX rozszerzenia Wishlist Total

Pobierz pliki rozszerzeń Wishlist Total w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Wishlist Total Wishlist Total
ID efcojkbaeocjjmdhbdcdkadnccmjbgog
Oficjalny URL https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog
Opis amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Rozmiar pliku 82.81 KB
Liczba instalacji 98
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-02-05
Data Publikacji 2014-02-05
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper crimsonfae
Typ Płatności free
Strona Rozszerzenia https://github.com/howaboutudance/wishlist-total
Obsługiwane Języki 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\/*"
    ]
}