Warehouse Spy for Amazon

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

Warehouse Spy for Amazonคืออะไร?

Warehouse Spy for Amazon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://fluentbits.com และคุณลักษณะหลักของมันคือ "View the Amazon Warehouse Deals availability directly on any Amazon product page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Warehouse Spy for Amazon

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}