Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Qu'est-ce que Shopify Product Revealer ?

Shopify Product Revealer est une extension Chrome développée par Nick Arora, et sa fonction principale est "Shows latest, oldest and best selling products of an store".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Shopify Product Revealer

Téléchargez les fichiers d'extension Shopify Product Revealer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
URL Officiel https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Description Shows latest, oldest and best selling products of an store
Taille du Fichier 56.62 KB
Nombre d'Installations 4,395
Version Actuelle 0.3
Dernière Mise à Jour 2018-09-09
Date de Publication 2018-09-08
Évaluation 3.00/5 Total 4 Évaluations
Développeur Nick Arora
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}