Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Co to jest Shopify Product Revealer?

Shopify Product Revealer to rozszerzenie Chrome opracowane przez Nick Arora, a jego główną funkcją jest „Shows latest, oldest and best selling products of an store”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Shopify Product Revealer

Pobierz pliki rozszerzeń Shopify Product Revealer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Oficjalny URL https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Opis Shows latest, oldest and best selling products of an store
Rozmiar pliku 56.62 KB
Liczba instalacji 4,395
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2018-09-09
Data Publikacji 2018-09-08
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper Nick Arora
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}