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" ] } ] } |