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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}