Shop Safe

A chrome extension that helps to identify where an amazon product is originated from.

什么是Shop Safe?

Shop Safe是由Shop Safe开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that helps to identify where an amazon product is originated from.”。

扩展截图

screenshot

下载Shop Safe扩展crx文件

下载Shop Safe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is an extension which provides the country information of an amazon product on the product detail page.                    

扩展基本信息

名称 Shop Safe Shop Safe
ID helhdfggaejjdpkfkbpfbnchljaobhbp
官方URL https://chromewebstore.google.com/detail/shop-safe/helhdfggaejjdpkfkbpfbnchljaobhbp
简介 A chrome extension that helps to identify where an amazon product is originated from.
文件大小 1.01 MB
安装次数 182
当前版本 1.0.0
更新时间 2023-11-07
上架时间 2023-11-06
评分 5.00/5 共3次评分
开发者 Shop Safe
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://cromeprivacypolicy.s3.amazonaws.com/safeshop-privacypolicy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that helps to identify where an amazon product is originated from.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Shop Safe",
    "icons": {
        "192": ".\/assets\/icons\/icon-192.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*\/dp\/*",
                "https:\/\/www.amazon.com\/dp\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ]
}