Globbing
Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…
Was ist Globbing?
Globbing ist eine Chrome-Erweiterung, die von system entwickelt wurde, und ihr Hauptmerkmal ist "Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is…".
Erweiterungsscreenshots
Globbing-Erweiterungs-CRX-Datei herunterladen
Laden Sie Globbing-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Globbing |
ID | dcifnjbhgnhliboepcenbbollbmdfjfp |
Offizielle URL | https://chromewebstore.google.com/detail/globbing/dcifnjbhgnhliboepcenbbollbmdfjfp |
Beschreibung | Globbing Extension is a tool that automatically adds "Globbing US warehouse address" to the website you want to shop. It is… |
Dateigröße | 175 KB |
Installationsanzahl | 180 |
Aktuelle Version | 3.0.2 |
Letztes Update | 2023-06-05 |
Veröffentlichungsdatum | 2023-06-05 |
Entwickler | system |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |