Shopify Product Revealer

Shows latest, oldest and best selling products of an store

什麼是Shopify Product Revealer?

Shopify Product Revealer是由Nick Arora開發的Chrome擴展程式,該擴展的主要功能是“Shows latest, oldest and best selling products of an store”。

擴展截圖

screenshot

下載Shopify Product Revealer擴展crx文件

下載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
官方網址 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"
        }
    ]
}