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 là gì?

Argos Discount Viewer là một tiện ích mở rộng Chrome được phát triển bởi Rand, và tính năng chính của nó là "With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Argos Discount Viewer

Tải xuống các tệp mở rộng Argos Discount Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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%                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Argos Discount Viewer Argos Discount Viewer
ID gjlggchigbelebkhdffenmdnopejbnhb
URL Chính Thức https://chromewebstore.google.com/detail/argos-discount-viewer/gjlggchigbelebkhdffenmdnopejbnhb
Mô tả With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.
Kích Thước Tệp 76.83 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2023-01-22
Ngày Phát Hành 2020-06-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Rand
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}