FreeShopper
Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!
Co to jest FreeShopper?
FreeShopper to rozszerzenie Chrome opracowane przez fluentcodevs, a jego główną funkcją jest „Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia FreeShopper
Pobierz pliki rozszerzeń FreeShopper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | njpfbmajlfbhhnhhdipbhcchelcakcil |
Oficjalny URL | https://chrome.google.com/webstore/detail/freeshopper/njpfbmajlfbhhnhhdipbhcchelcakcil |
Opis | Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services! |
Rozmiar pliku | 89.82 KB |
Liczba instalacji | 17 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-06-15 |
Data Publikacji | 2017-06-14 |
Ocena | 2.67/5 Łącznie 3 Oceny |
Deweloper | fluentcodevs |
Typ Płatności | free |
Strona Rozszerzenia | http://www.samplesandsavings.com |
Obsługiwane Języki | 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" ] } |