Price Converter
Converts Polish Zloty to Euro
Что такое Price Converter?
Price Converter - это расширение Chrome, разработанное andymgroove, и его основная функция - "Converts Polish Zloty to Euro".
Снимки экрана расширения
Скачать файл CRX расширения Price Converter
Скачайте файлы расширений Price Converter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically converts polish Zloty to Euro prices in www.allegro.pl If prices do not appear - reload the allegro.pl page.
Основная информация о расширении
Название | |
ID | akioidnlcbamonmmjaadoedlfndimhej |
Официальный URL | https://chrome.google.com/webstore/detail/price-converter/akioidnlcbamonmmjaadoedlfndimhej |
Описание | Converts Polish Zloty to Euro |
Размер файла | 41.11 KB |
Количество установок | 75 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-03-14 |
Дата публикации | 2016-03-14 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | andymgroove |
Тип оплаты | free |
Официальный сайт расширения | http://jumper.lt |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Price Converter", "description": "Converts Polish Zloty to Euro", "version": "1.0", "browser_action": { "default_icon": "money.png" }, "icons": { "16": "jumper.png", "48": "money.png" }, "content_scripts": [ { "matches": [ "http:\/\/allegro.pl\/*", "http:\/\/archiwum.allegro.pl\/*", "http:\/\/promocje.allegro.pl\/*" ], "css": [ "styles.css" ], "js": [ "jquery.js", "price_converter.js" ] } ], "permissions": [ "tabs", "http:\/\/allegro.pl\/*", "storage" ] } |