Argos Discount Viewer

With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.

Argos Discount Viewerคืออะไร?

Argos Discount Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rand และคุณลักษณะหลักของมันคือ "With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Argos Discount Viewer

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

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

                        Have your discount calculated and displayed alongside the original price on all products. You can easily set a new discount by dragging the slider up and down to your required value from 5% to 50%                    

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

ชื่อ Argos Discount Viewer Argos Discount Viewer
ID gjlggchigbelebkhdffenmdnopejbnhb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/argos-discount-viewer/gjlggchigbelebkhdffenmdnopejbnhb
คำอธิบาย With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.
ขนาดไฟล์ 76.83 KB
จำนวนการติดตั้ง 120
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2023-01-22
วันที่เผยแพร่ 2020-06-18
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Rand
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Argos Discount Viewer",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "Argos Discount Viewer",
        "default_popup": "popup.html"
    },
    "description": "With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.argos.co.uk\/product\/*",
                "https:\/\/www.argos.co.uk\/product\/*"
            ],
            "css": [
                "css\/content_scripts-styles.css"
            ],
            "js": [
                "js\/discount.js"
            ]
        }
    ]
}