FreeShopper
Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!
Vad är FreeShopper?
FreeShopper är en Chrome-tillägg utvecklad av fluentcodevs, och dess huvudfunktion är "Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!".
Tilläggsskärmbilder
Ladda ner FreeShopper-förlängningens CRX-fil
Ladda ner FreeShopper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | |
ID | njpfbmajlfbhhnhhdipbhcchelcakcil |
Officiell webbadress | https://chrome.google.com/webstore/detail/freeshopper/njpfbmajlfbhhnhhdipbhcchelcakcil |
Beskrivning | Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services! |
Filstorlek | 89.82 KB |
Antal Installationer | 17 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-06-15 |
Publiceringsdatum | 2017-06-14 |
Betyg | 2.67/5 Totalt 3 Betyg |
Utvecklare | fluentcodevs |
Betalningssätt | free |
Tilläggswebbplats | http://www.samplesandsavings.com |
Stödda Språk | 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" ] } |