UAH Price

UAH Price

Показывает $/€ цены в гривнах

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UAH Price",
  "description": "Показывает $/€ цены в гривнах",
  "version": "0.13",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "author": [
    {
      "name": "Max Nedelchev",
      "email": "[email protected]"
    },
    {
      "name": "Andrey Golubkov",
      "email": "[email protected]"
    }
  ],
  "short_name": "UAH Price",
  "browser_action": {
    "default_title": "UAH Price",
    "default_icon": "icons/48x48.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "vendor/jquery-3.1.0.min.js",
        "vendor/jquery-ui.min.js",
        "banks.js",
        "settings.js",
        "sites.js",
        "view_list.js",
        "pb24_price_loader.js"
      ],
      "run_at": "document_end"
    }
  ]
}