Shopify Product Revealer

Shows latest, oldest and best selling products of an store

O que é Shopify Product Revealer?

Shopify Product Revealer é uma extensão do Chrome desenvolvida por Nick Arora, e sua principal característica é "Shows latest, oldest and best selling products of an store".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shopify Product Revealer

Baixe arquivos de extensão Shopify Product Revealer 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

                        Shows your the best selling products from shopify!

Also shows you latest and oldest added products inside a shopify store.

Disclaimer: The chrome extension might not work on all the shopify stores as some hide their best sellers using scripts                    

Informações Básicas da Extensão

Nome Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
URL Oficial https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Descrição Shows latest, oldest and best selling products of an store
Tamanho do Arquivo 56.62 KB
Contagem de Instalações 4,395
Versão Atual 0.3
Última Atualização 2018-09-09
Data de Publicação 2018-09-08
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor Nick Arora
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shopify Product Revealer",
    "description": "Shows latest, oldest and best selling products of an store",
    "version": "0.3",
    "author": "Nick Arora",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "incognito": "split",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}