Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Was ist Shopify Product Revealer?

Shopify Product Revealer ist eine Chrome-Erweiterung, die von Nick Arora entwickelt wurde, und ihr Hauptmerkmal ist "Shows latest, oldest and best selling products of an store".

Erweiterungsscreenshots

screenshot

Shopify Product Revealer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Shopify Product Revealer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Offizielle URL https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Beschreibung Shows latest, oldest and best selling products of an store
Dateigröße 56.62 KB
Installationsanzahl 4,395
Aktuelle Version 0.3
Letztes Update 2018-09-09
Veröffentlichungsdatum 2018-09-08
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler Nick Arora
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}