SpotShop

A powerful reverse ecommerce search tool, with support for various search engines, such as Amazon

Was ist SpotShop?

SpotShop ist eine Chrome-Erweiterung, die von Ezeh Uche entwickelt wurde, und ihr Hauptmerkmal ist "A powerful reverse ecommerce search tool, with support for various search engines, such as Amazon".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

SpotShop-Erweiterungs-CRX-Datei herunterladen

Laden Sie SpotShop-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

                        Spotshop is a browser extension which enables you to does an Amazon.com reverse image search when you right click on an Image or the browser toolbar.

Images positioned at the selected area are detected regardless of how they were embedded in the page. The extension also supports uploading local images, searching for video frames, capturing details within images, and searching for images from private sites.

A handful of search modes to search for Amazon.com items are offered that serve different use cases. The search mode can be set independently for the context menu and browser toolbar from the extension's options.

Search modes:
  • Select (context menu and toolbar): select an image on the page, then search for the image URL, whenever possible. This is the default search mode.
  • Select & upload (context menu and toolbar): select an image on the page, then fetch the image, possibly from the browser cache, and upload it. This search mode is preferred for sites which do not allow direct linking of images or are otherwise private.
  • Capture (context menu and toolbar): select and capture a page area, then upload it.
  • Upload (toolbar): select or drop an image from your device, or paste it from the clipboard, then upload it.
  • URL (toolbar): search for an image URL.

Features:
  • Detect any image on the page, including those declared in CSS and pseudo-elements
  • Select the desired image from a dialog when multiple images are found
  • Search for images from private sites (see search modes)
  • Search for local images
  • Search for the current video frame                    

Grundlegende Informationen zur Erweiterung

Name SpotShop SpotShop
ID jaoiemgfmlmegpjhbbeacnckgoodigdj
Offizielle URL https://chromewebstore.google.com/detail/spotshop/jaoiemgfmlmegpjhbbeacnckgoodigdj
Beschreibung A powerful reverse ecommerce search tool, with support for various search engines, such as Amazon
Dateigröße 576 KB
Installationsanzahl 15
Aktuelle Version 3.3.0
Letztes Update 2020-11-16
Veröffentlichungsdatum 2020-11-16
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Ezeh Uche
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://spotshopit.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.3.0",
    "author": "Ezeokeke Uche",
    "homepage_url": "https:\/\/spotshopit.co",
    "default_locale": "en",
    "minimum_chrome_version": "76.0",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "activeTab",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src * data:; connect-src * blob:; object-src 'none';",
    "icons": {
        "16": "src\/icons\/app\/icon-16.png",
        "19": "src\/icons\/app\/icon-19.png",
        "24": "src\/icons\/app\/icon-24.png",
        "32": "src\/icons\/app\/icon-32.png",
        "38": "src\/icons\/app\/icon-38.png",
        "48": "src\/icons\/app\/icon-48.png",
        "64": "src\/icons\/app\/icon-64.png",
        "96": "src\/icons\/app\/icon-96.png",
        "128": "src\/icons\/app\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "src\/icons\/app\/icon-16.png",
            "19": "src\/icons\/app\/icon-19.png",
            "24": "src\/icons\/app\/icon-24.png",
            "32": "src\/icons\/app\/icon-32.png",
            "38": "src\/icons\/app\/icon-38.png",
            "48": "src\/icons\/app\/icon-48.png",
            "64": "src\/icons\/app\/icon-64.png",
            "96": "src\/icons\/app\/icon-96.png",
            "128": "src\/icons\/app\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "background": {
        "page": "src\/background\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "src\/content\/insert\/script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/content\/style.css",
        "src\/select\/pointer.css",
        "src\/select\/index.html",
        "src\/capture\/index.html",
        "src\/confirm\/index.html"
    ],
    "incognito": "split"
}