Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Vad är Shopify Product Revealer?

Shopify Product Revealer är en Chrome-tillägg utvecklad av Nick Arora, och dess huvudfunktion är "Shows latest, oldest and best selling products of an store".

Tilläggsskärmbilder

screenshot

Ladda ner Shopify Product Revealer-förlängningens CRX-fil

Ladda ner Shopify Product Revealer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Officiell webbadress https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Beskrivning Shows latest, oldest and best selling products of an store
Filstorlek 56.62 KB
Antal Installationer 4,395
Aktuell Version 0.3
Senast Uppdaterad 2018-09-09
Publiceringsdatum 2018-09-08
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare Nick Arora
Betalningssätt free
Stödda Språk 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"
        }
    ]
}