Argos Discount Viewer

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

Was ist Argos Discount Viewer?

Argos Discount Viewer ist eine Chrome-Erweiterung, die von Rand entwickelt wurde, und ihr Hauptmerkmal ist "With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Argos Discount Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Argos Discount Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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%                    

Grundlegende Informationen zur Erweiterung

Name Argos Discount Viewer Argos Discount Viewer
ID gjlggchigbelebkhdffenmdnopejbnhb
Offizielle URL https://chromewebstore.google.com/detail/argos-discount-viewer/gjlggchigbelebkhdffenmdnopejbnhb
Beschreibung With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.
Dateigröße 76.83 KB
Installationsanzahl 120
Aktuelle Version 1.2.2
Letztes Update 2023-01-22
Veröffentlichungsdatum 2020-06-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Rand
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}