FreeShopper
Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!
Что такое FreeShopper?
FreeShopper - это расширение Chrome, разработанное fluentcodevs, и его основная функция - "Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services!".
Снимки экрана расширения
Скачать файл CRX расширения FreeShopper
Скачайте файлы расширений FreeShopper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | |
ID | njpfbmajlfbhhnhhdipbhcchelcakcil |
Официальный URL | https://chrome.google.com/webstore/detail/freeshopper/njpfbmajlfbhhnhhdipbhcchelcakcil |
Описание | Welcome to FreeShopper, where you’ll find a collection of the best deals on some of your favorite products and services! |
Размер файла | 89.82 KB |
Количество установок | 17 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-06-15 |
Дата публикации | 2017-06-14 |
Рейтинг | 2.67/5 Всего 3 оценок |
Разработчик | fluentcodevs |
Тип оплаты | free |
Официальный сайт расширения | http://www.samplesandsavings.com |
Поддерживаемые языки | 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" ] } |