Price Converter

Converts Polish Zloty to Euro

什么是Price Converter?

Price Converter是由andymgroove开发的Chrome扩展程序,该扩展的主要功能是“Converts Polish Zloty to Euro”。

扩展截图

screenshot

下载Price Converter扩展crx文件

下载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.                    

扩展基本信息

名称 Price Converter Price Converter
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"
    ]
}