SpyDeals Chrome Extension

Gets information about coupons on SpyDeals for browsed website

Was ist SpyDeals Chrome Extension?

SpyDeals Chrome Extension ist eine Chrome-Erweiterung, die von https://spydeals.nl entwickelt wurde, und ihr Hauptmerkmal ist "Gets information about coupons on SpyDeals for browsed website".

Erweiterungsscreenshots

screenshot

SpyDeals Chrome Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie SpyDeals Chrome Extension-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

                        Wanneer je online aan het winkelen bent zoekt Spydeals automatisch voor je naar de beste deals en kortingscodes.                    

Grundlegende Informationen zur Erweiterung

Name SpyDeals Chrome Extension SpyDeals Chrome Extension
ID ccpdddfmfddafmpgbhoollfljlhfnhnf
Offizielle URL https://chromewebstore.google.com/detail/spydeals-chrome-extension/ccpdddfmfddafmpgbhoollfljlhfnhnf
Beschreibung Gets information about coupons on SpyDeals for browsed website
Dateigröße 37.82 KB
Installationsanzahl 480
Aktuelle Version 2.0.1
Letztes Update 2020-07-23
Veröffentlichungsdatum 2020-07-15
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://spydeals.nl
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.spydeals.nl
Hilfeseite URL https://www.spydeals.nl/contact
URL der Datenschutzrichtlinien-Seite https://www.spydeals.nl/privacy
Unterstützte Sprachen nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpyDeals Chrome Extension",
    "version": "2.0.1",
    "description": "Gets information about coupons on SpyDeals for browsed website",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "src\/images\/icon_16.png",
            "32": "src\/images\/icon_32.png",
            "48": "src\/images\/icon_48.png",
            "128": "src\/images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "src\/contentscript.js"
            ],
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.spydeals.nl\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/utils\/spydeals-toast.js",
        "src\/utils\/spydeals-toast.css"
    ],
    "icons": {
        "16": "src\/images\/icon_16.png",
        "32": "src\/images\/icon_32.png",
        "48": "src\/images\/icon_48.png",
        "128": "src\/images\/icon_128.png"
    },
    "manifest_version": 2
}