Shopify Product Revealer

Shows latest, oldest and best selling products of an store

Shopify Product Revealer là gì?

Shopify Product Revealer là một tiện ích mở rộng Chrome được phát triển bởi Nick Arora, và tính năng chính của nó là "Shows latest, oldest and best selling products of an store".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shopify Product Revealer

Tải xuống các tệp mở rộng Shopify Product Revealer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shopify Product Revealer Shopify Product Revealer
ID pmpflpgollcandlpgphchmbojidbjgek
URL Chính Thức https://chromewebstore.google.com/detail/shopify-product-revealer/pmpflpgollcandlpgphchmbojidbjgek
Mô tả Shows latest, oldest and best selling products of an store
Kích Thước Tệp 56.62 KB
Số Lần Cài Đặt 4,395
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2018-09-09
Ngày Phát Hành 2018-09-08
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Nick Arora
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}