FreeShopper

Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!

Was ist FreeShopper?

FreeShopper ist eine Chrome-Erweiterung, die von fluentcodevs entwickelt wurde, und ihr Hauptmerkmal ist "Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!".

Erweiterungsscreenshots

screenshot
screenshot

FreeShopper-Erweiterungs-CRX-Datei herunterladen

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

                        We automatically find FREE products as you shop for them online. YOU visit stores on the web and search for your product. WE search to see if it's available for FREE elsewhere and send you an alert!                    

Grundlegende Informationen zur Erweiterung

Name FreeShopper FreeShopper
ID njpfbmajlfbhhnhhdipbhcchelcakcil
Offizielle URL https://chrome.google.com/webstore/detail/freeshopper/njpfbmajlfbhhnhhdipbhcchelcakcil
Beschreibung Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!
Dateigröße 89.82 KB
Installationsanzahl 17
Aktuelle Version 1.0
Letztes Update 2017-06-15
Veröffentlichungsdatum 2017-06-14
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler fluentcodevs
Zahlungsart free
Erweiterungswebsite http://www.samplesandsavings.com
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FreeShopper",
    "description": "Welcome to FreeShopper, where you\u2019ll find a collection of the best deals on some of your favorite products and services!",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "FreeShopper"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-3.0.0.js",
                "handler.js",
                "relevancy.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "activeTab",
        "webNavigation",
        "storage",
        "management",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "icon.png",
        "rewards.json"
    ]
}