Globbing
Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…
Что такое Globbing?
Globbing - это расширение Chrome, разработанное system, и его основная функция - "Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…".
Снимки экрана расширения
Скачать файл CRX расширения Globbing
Скачайте файлы расширений 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 |
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" ] } |