[Amazon] show price without fees

Show amazon product prices without the shipping fee that you pay to amazon as a seller.

什麼是[Amazon] show price without fees?

[Amazon] show price without fees是由MJ Digital開發的Chrome擴展程式,該擴展的主要功能是“Show amazon product prices without the shipping fee that you pay to amazon as a seller.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載[Amazon] show price without fees擴展crx文件

下載[Amazon] show price without fees擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This application will show you the price after the 15% seller fee amazon takes after a sale. The seller fee percentage is adjustable and you can change the percentage to your liking. A must have for anyone doing product research on Amazon for dropshipping.                    

擴展基本資訊

名稱 [Amazon] show price without fees [Amazon] show price without fees
ID cocaimehnkadckcgnahaafeggfnihnkj
官方網址 https://chromewebstore.google.com/detail/amazon-show-price-without/cocaimehnkadckcgnahaafeggfnihnkj
簡介 Show amazon product prices without the shipping fee that you pay to amazon as a seller.
檔案大小 416 KB
安裝次數 1,526
目前版本 5.0.2
更新時間 2022-11-15
上架時間 2020-06-06
評分 4.80/5 共 5 次評分
開發者 MJ Digital
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://amzshowprice.clickfunnels.com/home
說明頁面URL https://amzshowprice.clickfunnels.com/home
隱私政策頁面URL https://amzshowprice.clickfunnels.com/privacy-policy23
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "[Amazon] show price without fees",
    "short_name": "what I earn on amazon",
    "description": "Show amazon product prices without the shipping fee that you pay to amazon as a seller.",
    "version": "5.0.2",
    "version_name": "5.0.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "src\/index.html",
        "default_title": "To see the chrome extension in action please open amazon and adjust your shipping fee percentage to your liking."
    },
    "background": {
        "service_worker": "\/src\/authModule\/js\/background-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "http:\/\/www.amazon.com\/*",
                "http:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "http:\/\/www.amazon.co.uk\/*",
                "http:\/\/www.amazon.co.jp\/*",
                "https:\/\/www.amazon.co.jp\/*",
                "http:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.fr\/*",
                "http:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.de\/*"
            ],
            "js": [
                "src\/jquery-1.12.3.js",
                "src\/injectable.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/jquery-1.12.3.js",
                "src\/authModule\/js\/config.js",
                "src\/authModule\/js\/core.js",
                "src\/authModule\/js\/stripe_scripts.js",
                "src\/authModule\/js\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/amazon-extension-test.herokuapp.com\/*state=extension_token*"
            ],
            "js": [
                "src\/authModule\/js\/core.js",
                "src\/authModule\/js\/oauth.js",
                "src\/authModule\/js\/oauthContent.js"
            ],
            "run_at": "document_start"
        }
    ],
    "client_id": "286222568796-dh2fnemvefk5n48goa2glfl0gb42uq94.apps.googleusercontent.com",
    "web_accessible_resources": [
        {
            "resources": [
                "src\/images\/*"
            ],
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "http:\/\/www.amazon.com\/*",
                "http:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "http:\/\/www.amazon.co.uk\/*",
                "http:\/\/www.amazon.co.jp\/*",
                "https:\/\/www.amazon.co.jp\/*",
                "http:\/\/www.amazon.fr\/*",
                "https:\/\/www.amazon.fr\/*",
                "http:\/\/www.amazon.de\/*",
                "https:\/\/www.amazon.de\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/*.googleapis.com\/",
        "https:\/\/amazon-extension-test.herokuapp.com\/*",
        "*:\/\/localhost:44303\/*"
    ]
}