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