PriceFixer
A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier.
Что такое PriceFixer?
PriceFixer - это расширение Chrome, разработанное Yu Chen Hou, и его основная функция - "A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ".
Снимки экрана расширения
Скачать файл CRX расширения PriceFixer
Скачайте файлы расширений PriceFixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. For example: 9.99$ is now 10$ 9.49€ is now 9.50€ Supports: Dollar, Euro, Pound, and Yen
Основная информация о расширении
Название | |
ID | ffcpiehollaeiojefjbjheokkjcjlcpe |
Официальный URL | https://chrome.google.com/webstore/detail/pricefixer/ffcpiehollaeiojefjbjheokkjcjlcpe |
Описание | A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. |
Размер файла | 167 KB |
Количество установок | 45 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2015-11-04 |
Дата публикации | 2015-11-04 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Yu Chen Hou |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PriceFixer", "version": "0.1.1", "manifest_version": 2, "description": "A browser plugin that just rounds all online retail prices up to the nearest unit to make shopping easier. ", "homepage_url": "https:\/\/github.com\/icechen1\/pricefixer", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "options_page": "src\/options_custom\/index.html", "minimum_chrome_version": "42", "page_action": { "default_icon": "icons\/icon19.png", "default_title": "page action demo", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "storage", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/options_custom\/lib\/store.js", "src\/inject\/inject.js" ] } ] } |