Wishlist Total

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

Vad är Wishlist Total?

Wishlist Total är en Chrome-tillägg utvecklad av crimsonfae, och dess huvudfunktion är "amazon wishlist total chrome extension, totals all items in wishlist and displays the total".

Ladda ner Wishlist Total-förlängningens CRX-fil

Ladda ner Wishlist Total-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Wishlist Total Wishlist Total
ID efcojkbaeocjjmdhbdcdkadnccmjbgog
Officiell webbadress https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog
Beskrivning amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Filstorlek 82.81 KB
Antal Installationer 98
Aktuell Version 1.0
Senast Uppdaterad 2014-02-05
Publiceringsdatum 2014-02-05
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare crimsonfae
Betalningssätt free
Tilläggswebbplats https://github.com/howaboutudance/wishlist-total
Stödda Språk 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\/*"
    ]
}