Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Hvad er Shopify Product Revealer?

Shopify Product Revealer er en Chrome-udvidelse udviklet af Nick Arora, og dens hovedfunktion er "Shows latest, oldest and best selling products of an store".

Udvidelsesskærmbilleder

screenshot

Download Shopify Product Revealer-udvidelses-CRX-fil

Download Shopify Product Revealer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Officiel URL https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Beskrivelse Shows latest, oldest and best selling products of an store
Filstørrelse 56.62 KB
Antal Installationer 4,395
Nuværende Version 0.3
Senest Opdateret 2018-09-09
Udgivelsesdato 2018-09-08
Bedømmelse 3.00/5 Samlet 4 Bedømmelser
Udvikler Nick Arora
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}