Amazon Storage Fees Calculator

Calculates the short and long-term Amazon FBA storage fees.

Amazon Storage Fees Calculator란 무엇입니까?

Amazon Storage Fees Calculator은(는) Turok에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculates the short and long-term Amazon FBA storage fees."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Amazon Storage Fees Calculator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 Amazon Storage Fees Calculator Amazon Storage Fees Calculator
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
        }
    ]
}