Wishlist Total
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Hvad er Wishlist Total?
Wishlist Total er en Chrome-udvidelse udviklet af crimsonfae, og dens hovedfunktion er "amazon wishlist total chrome extension, totals all items in wishlist and displays the total".
Download Wishlist Total-udvidelses-CRX-fil
Download Wishlist Total-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | efcojkbaeocjjmdhbdcdkadnccmjbgog |
Officiel URL | https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog |
Beskrivelse | amazon wishlist total chrome extension, totals all items in wishlist and displays the total |
Filstørrelse | 82.81 KB |
Antal Installationer | 98 |
Nuværende Version | 1.0 |
Senest Opdateret | 2014-02-05 |
Udgivelsesdato | 2014-02-05 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | crimsonfae |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/howaboutudance/wishlist-total |
Understøttede Sprog | 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\/*" ] } |