Globbing

Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…

什么是Globbing?

Globbing是由system开发的Chrome扩展程序,该扩展的主要功能是“Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…”。

扩展截图

screenshot

下载Globbing扩展crx文件

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

扩展使用说明

                        Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is required to log in to your Globbing account to activate the tool.

Addresses added:

- Amazon
- B&H Photo Video
- ASOS
- eBay                    

扩展基本信息

名称 Globbing Globbing
ID dcifnjbhgnhliboepcenbbollbmdfjfp
官方URL https://chromewebstore.google.com/detail/globbing/dcifnjbhgnhliboepcenbbollbmdfjfp
简介 Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…
文件大小 175 KB
安装次数 180
当前版本 3.0.2
更新时间 2023-06-05
上架时间 2023-06-05
开发者 system
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Globbing",
    "version": "3.0.2",
    "action": {
        "default_icon": {
            "16": "images\/icon.png",
            "24": "images\/icon.png",
            "32": "images\/icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "Globbing"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.ebay.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.asos.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        },
        {
            "matches": [
                "https:\/\/*.bhphotovideo.com\/*"
            ],
            "resources": [
                "images\/cross.svg",
                "images\/image2.png",
                "images\/check.png",
                "images\/logo.svg"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.globbing.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*"
            ],
            "js": [
                "js\/stores\/amazon.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.ebay.com\/*"
            ],
            "js": [
                "js\/stores\/ebay.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.asos.com\/*"
            ],
            "js": [
                "js\/stores\/asos.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.bhphotovideo.com\/*"
            ],
            "js": [
                "js\/stores\/bh.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "storage"
    ]
}