Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Apa itu Shopify Product Revealer?

Shopify Product Revealer adalah ekstensi Chrome yang dikembangkan oleh Nick Arora, dan fitur utamanya adalah "Shows latest, oldest and best selling products of an store".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Shopify Product Revealer

Unduh file ekstensi Shopify Product Revealer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
URL Resmi https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Deskripsi Shows latest, oldest and best selling products of an store
Ukuran File 56.62 KB
Jumlah Instalasi 4,395
Versi Saat Ini 0.3
Terakhir Diperbarui 2018-09-09
Tanggal Publikasi 2018-09-08
Penilaian 3.00/5 Total 4 Penilaian
Pengembang Nick Arora
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}