Local

Find Amazon products locally. Get what you want today, with no shipping cost!

O que é Local?

Local é uma extensão do Chrome desenvolvida por berger.m.sophie, e sua principal característica é "Find Amazon products locally. Get what you want today, with no shipping cost!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Local

Baixe arquivos de extensão Local 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

                        This is an extension that allows users to search for Amazon products in their own surrounding in order to find local stores at which to buy the desired items.

1) Open up the product page on Amazon
2) Click the extension icon in your bookmarks bar
3) See all the relevant stores on a map!                    

Informações Básicas da Extensão

Nome Local Local
ID apdmmfimgdclckmmkjkojbgmeinlloah
URL Oficial https://chromewebstore.google.com/detail/local/apdmmfimgdclckmmkjkojbgmeinlloah
Descrição Find Amazon products locally. Get what you want today, with no shipping cost!
Tamanho do Arquivo 11.91 KB
Contagem de Instalações 523
Versão Atual 2.1
Última Atualização 2022-10-07
Data de Publicação 2022-02-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor berger.m.sophie
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Local",
    "description": "Find Amazon products locally. Get what you want today, with no shipping cost!",
    "version": "2.1",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*",
                "https:\/\/www.amazon.ca\/*",
                "https:\/\/www.amazon.co.uk\/*",
                "https:\/\/www.amazon.at\/*",
                "https:\/\/www.amazon.de\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons8-shop-local-16.png",
            "32": "images\/icons8-shop-local-32.png",
            "48": "images\/icons8-shop-local-48.png",
            "100": "images\/icons8-shop-local-100.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icons8-shop-local-16.png",
        "32": "images\/icons8-shop-local-32.png",
        "48": "images\/icons8-shop-local-48.png",
        "100": "images\/icons8-shop-local-100.png"
    }
}