Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Cos'è Shopify Product Revealer?

Shopify Product Revealer è un'estensione di Chrome sviluppata da Nick Arora, e la sua funzione principale è "Shows latest, oldest and best selling products of an store".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Shopify Product Revealer

Scarica i file di estensione Shopify Product Revealer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
URL Ufficiale https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Descrizione Shows latest, oldest and best selling products of an store
Dimensione del File 56.62 KB
Conteggio Installazioni 4,395
Versione Corrente 0.3
Ultimo Aggiornamento 2018-09-09
Data di Pubblicazione 2018-09-08
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore Nick Arora
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}