Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Wat is Shopify Product Revealer?

Shopify Product Revealer is een Chrome-extensie ontwikkeld door Nick Arora, en de belangrijkste functie is "Shows latest, oldest and best selling products of an store".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Shopify Product Revealer

Download Shopify Product Revealer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Officiële URL https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Beschrijving Shows latest, oldest and best selling products of an store
Bestandsgrootte 56.62 KB
Aantal Installaties 4,395
Huidige Versie 0.3
Laatst Bijgewerkt 2018-09-09
Publicatiedatum 2018-09-08
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Nick Arora
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}