Amazon Wishlist Subtotal
Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
Amazon Wishlist Subtotal क्या है?
Amazon Wishlist Subtotal HYUTS द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazon Wishlist Subtotal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Amazon Wishlist Subtotal |
ID | ikdiffamkfcbglfejmhioopagbponbmb |
आधिकारिक URL | https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb |
विवरण | Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you. |
फ़ाइल का आकार | 160 KB |
स्थापना संख्या | 440 |
वर्तमान संस्करण | 1.04 |
अंतिम अपडेट | 2022-07-22 |
प्रकाशन तिथि | 2018-08-18 |
रेटिंग | 4.29/5 कुल 7 रेटिंग्स |
डेवलपर | HYUTS |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.hyuts-programmer.com |
समर्थित भाषाएँ | 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" } ] } |