Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Что такое Shopify Product Revealer?

Shopify Product Revealer - это расширение Chrome, разработанное Nick Arora, и его основная функция - "Shows latest, oldest and best selling products of an store".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Shopify Product Revealer

Скачайте файлы расширений Shopify Product Revealer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
Официальный URL https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Описание Shows latest, oldest and best selling products of an store
Размер файла 56.62 KB
Количество установок 4,395
Текущая Версия 0.3
Последнее Обновление 2018-09-09
Дата публикации 2018-09-08
Рейтинг 3.00/5 Всего 4 оценок
Разработчик Nick Arora
Тип оплаты free
Поддерживаемые языки 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"
        }
    ]
}