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