Amazon Wishlist Subtotal
Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
O que é Amazon Wishlist Subtotal?
Amazon Wishlist Subtotal é uma extensão do Chrome desenvolvida por HYUTS, e sua principal característica é "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Amazon Wishlist Subtotal
Baixe arquivos de extensão Amazon Wishlist Subtotal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension will help you save time shopping on Amazon when using wishlists. It automatically calculates the items in wishlists so you don't have to. Feel free to contact me if you have an issues. Also would love to hear my users recommendations on what they would like to see added! v1.3 Now works in grid view as well as list Now calculates larger lists (must scroll down to load them) 🖱⬇ v1.04 Fixed issue where colors would not load properly Fixed issue where content would not line up as expected Bugs: Currently need to fix loading custom colors. Extension functionality still works.
Informações Básicas da Extensão
Nome | Amazon Wishlist Subtotal |
ID | ikdiffamkfcbglfejmhioopagbponbmb |
URL Oficial | https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb |
Descrição | Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you. |
Tamanho do Arquivo | 160 KB |
Contagem de Instalações | 440 |
Versão Atual | 1.04 |
Última Atualização | 2022-07-22 |
Data de Publicação | 2018-08-18 |
Classificação | 4.29/5 Total de 7 Avaliações |
Desenvolvedor | HYUTS |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.hyuts-programmer.com |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Wishlist Subtotal", "description": "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.", "version": "1.04", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "\/html\/popup.html", "default_icon": { "128": "\/images\/icon.png" } }, "icons": { "128": "\/images\/icon.png" }, "options_page": "html\/options.html", "content_scripts": [ { "js": [ "content-script.js", "js\/storage.js", "js\/parse_price.js" ], "matches": [ "https:\/\/*.amazon.com\/*wishlist*" ], "run_at": "document_start" } ] } |