SQDC Back in Stock Notification

Provides the option to subscribe to stock notifications for SQDC products directly from the product page.

SQDC Back in Stock Notificationคืออะไร?

SQDC Back in Stock Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sylvain Giroux และคุณลักษณะหลักของมันคือ "Provides the option to subscribe to stock notifications for SQDC products directly from the product page."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SQDC Back in Stock Notification

ดาวน์โหลดไฟล์ส่วนขยาย SQDC Back in Stock Notification ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Want to know when your favorite products are back in-stock on SQDC ?
This extension will provide you with notifications when products on your watch-list are available to order.

To add a product on your watch-list, visit the product page of your choice on sqdc.ca, select your quantity and then click the "Notify me when back in stock" button. Do this step for all the products you want to get notified.

The extension will take care of checking the inventory of your products every hour and notify you once available.
-=-=-=-=-=
Voulez-vous savoir quand vos produits favoris seront de retour sur le site de la sqdc.ca ?
Cette extension vous permettra d'ajouter des alertes lorsque vos produits sélectionnés seront de nouveau en stock.

Pour ajouter une alerte sur un item, visitez la page du produit sur sqdc.ca et cliquer le bouton "Prévenez-moi lorsqu'il sera en stock". Répéter cette étape pour tous vos produits dont vous voulez être alerté.

Cette extension prendra charge de vérifier l'inventaire des produits à chaque heure et vous avertira lorsqu'ils seront en stock.

L'extension Firefox peut être téléchargé à cette adresse : https://addons.mozilla.org/en-US/firefox/addon/sqdc-out-of-stock-notification/

The Firefox extension can be found at https://addons.mozilla.org/en-US/firefox/addon/sqdc-out-of-stock-notification/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SQDC Back in Stock Notification SQDC Back in Stock Notification
ID llgnjenjokhagmagnoaikpnndbfjhlpj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sqdc-back-in-stock-notifi/llgnjenjokhagmagnoaikpnndbfjhlpj
คำอธิบาย Provides the option to subscribe to stock notifications for SQDC products directly from the product page.
ขนาดไฟล์ 34.3 KB
จำนวนการติดตั้ง 242
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2019-01-23
วันที่เผยแพร่ 2019-01-23
คะแนน 4.92/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Sylvain Giroux
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/spoji/SQDC-Back-in-Stock-Notification
URL หน้าช่วยเหลือ https://github.com/spoji/SQDC-Back-in-Stock-Notification/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SQDC Back in Stock Notification",
    "description": "Provides the option to subscribe to stock notifications for SQDC products directly from the product page.",
    "version": "1.1.5",
    "icons": {
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "lib\/browser-polyfill.js",
            "background_scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.sqdc.ca\/*\/p-*"
            ],
            "js": [
                "lib\/browser-polyfill.js",
                "content_scripts\/check-inventory.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "SQDC Back in Stock Notification",
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "*:\/\/*.sqdc.ca\/*",
        "alarms",
        "notifications",
        "storage"
    ]
}