Argos Discount Viewer

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

O que é Argos Discount Viewer?

Argos Discount Viewer é uma extensão do Chrome desenvolvida por Rand, e sua principal característica é "With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Argos Discount Viewer

Baixe arquivos de extensão Argos Discount Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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%                    

Informações Básicas da Extensão

Nome Argos Discount Viewer Argos Discount Viewer
ID gjlggchigbelebkhdffenmdnopejbnhb
URL Oficial https://chromewebstore.google.com/detail/argos-discount-viewer/gjlggchigbelebkhdffenmdnopejbnhb
Descrição With this extension you can easily have your discount calculated and displayed alongside the original price on the Argos website.
Tamanho do Arquivo 76.83 KB
Contagem de Instalações 120
Versão Atual 1.2.2
Última Atualização 2023-01-22
Data de Publicação 2020-06-18
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Rand
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}