Vend Age Restriction
This extension will determine a customers age before checkout
O que é Vend Age Restriction?
Vend Age Restriction é uma extensão do Chrome desenvolvida por Lutes, e sua principal característica é "This extension will determine a customers age before checkout".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Vend Age Restriction
Baixe arquivos de extensão Vend Age Restriction 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
Enter the customers DOB from their ID while checking out in the Vend web register. Allows customized age restriction 18 years old, 21 years old, or even 5 years old.
Informações Básicas da Extensão
Nome | Vend Age Restriction |
ID | behibmealfdflppiagmpcidhhbaojkmk |
URL Oficial | https://chromewebstore.google.com/detail/vend-age-restriction/behibmealfdflppiagmpcidhhbaojkmk |
Descrição | This extension will determine a customers age before checkout |
Tamanho do Arquivo | 42.25 KB |
Contagem de Instalações | 192 |
Versão Atual | 1.5.0 |
Última Atualização | 2016-08-09 |
Data de Publicação | 2016-08-09 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Lutes |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Vend Age Restriction", "description": "This extension will determine a customers age before checkout", "version": "1.5.0", "browser_action": { "default_icon": "icon.png", "default_title": "Vend Age Restriction", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.vendhq.com\/webregister\/" ], "css": [ "ar_style.css" ], "js": [ "jquery.js", "content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "https:\/\/*.vendhq.com\/webregister\/", "storage" ] } |