Amazon Storage Fees Calculator
Calculates the short and long-term Amazon FBA storage fees.
Amazon Storage Fees Calculator क्या है?
Amazon Storage Fees Calculator Turok द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculates the short and long-term Amazon FBA storage fees."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazon Storage Fees Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Amazon Storage Fees Calculator is a handy tool for every Amazon seller doing online arbitrage (OA). It calculates the short and long term FBA storage fees based on the product's dimensions, so it helps to make the right and feasible decisions. This helps you to get a better estimate of your potential profit. It is very helpful when deciding how many units to purchase or whether send something in to the warehouse or not. This extension is a great time saver as figuring this out manually is very time consuming. The fees multipliers can be changed in an intuitive extension options page.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | dbglamehnlckoibnodikjmcfdokehepi |
आधिकारिक URL | https://chromewebstore.google.com/detail/amazon-storage-fees-calcu/dbglamehnlckoibnodikjmcfdokehepi |
विवरण | Calculates the short and long-term Amazon FBA storage fees. |
फ़ाइल का आकार | 377 KB |
स्थापना संख्या | 83 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2017-02-04 |
प्रकाशन तिथि | 2017-02-03 |
रेटिंग | 1.00/5 कुल 5 रेटिंग्स |
डेवलपर | Turok |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Storage Fees Calculator", "description": "Calculates the short and long-term Amazon FBA storage fees.", "version": "1.2", "browser_action": { "default_icon": "icon.png", "default_title": "Amazong storage fees calculator", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "https:\/\/www.amazon.com\/*", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/*" ], "js": [ "scripts\/jquery.min.js", "content_script.js" ], "run_at": "document_end", "all_frames": true } ] } |