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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 |
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" ] } ] } |