Warehouse Spy for Amazon

View the Amazon Warehouse Deals availability directly on any Amazon product page.

什么是Warehouse Spy for Amazon?

Warehouse Spy for Amazon是由http://fluentbits.com开发的Chrome扩展程序,该扩展的主要功能是“View the Amazon Warehouse Deals availability directly on any Amazon product page.”。

扩展截图

screenshot
screenshot
screenshot

下载Warehouse Spy for Amazon扩展crx文件

下载Warehouse Spy for Amazon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Have you ever wondered what happens to all of the products that are returned to Amazon.com?  They are sold on Amazon under the store name 'Amazon Warehouse Deals'.  These products are sold at a deep discount up to 60% off the list price.

The downside to Amazon Warehouse Deals is that it's hard to see if a product is available in the warehouse, and how much it is discounted.  Not any more!  Warehouse Spy will check Amazon Warehouse Deals for the product you are viewing, and show you the discounted price right on the product page!                    

扩展基本信息

名称 Warehouse Spy for Amazon Warehouse Spy for Amazon
ID ldlecgjhajmpgddenebgnglicpfigcjn
官方URL https://chrome.google.com/webstore/detail/warehouse-spy-for-amazon/ldlecgjhajmpgddenebgnglicpfigcjn
简介 View the Amazon Warehouse Deals availability directly on any Amazon product page.
文件大小 31.86 KB
安装次数 2,983
当前版本 0.3.3
更新时间 2022-06-10
上架时间 2017-09-25
评分 2.93/5 共15次评分
开发者 http://fluentbits.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://fluentbits.com/warehousespy
帮助页面URL https://fluentbits.com/warehousespy/#privacy
隐私政策页面URL http://fluentbits.com/warehousespy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Warehouse Spy for Amazon",
    "version": "0.3.3",
    "description": "View the Amazon Warehouse Deals availability directly on any Amazon product page.",
    "short_name": "WarehouseSpy",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "128": "images\/icon-128.png"
    },
    "homepage_url": "https:\/\/warehousespy.com",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "content\/import-index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/index.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ]
        },
        {
            "resources": [
                "chunks\/*.js",
                "content\/index.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background\/index.js",
        "matches": [
            "https:\/\/*.amazon.com\/*"
        ],
        "type": "module"
    },
    "action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Warehouse Spy for Amazon"
    }
}