10bis price after discount

10bis price after discount

This extension displays the prices after discount in 10bis menu page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "10bis price after discount",
  "description": "This extension displays the prices after discount in 10bis menu page",
  "version": "0.3.7",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "10bisExtension.js"
      ],
      "matches": [
        "https://www.10bis.co.il/Restaurants/Menu/*"
      ]
    },
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "10bisExtension-next.js"
      ],
      "matches": [
        "https://www.10bis.co.il/next/*"
      ]
    }
  ],
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "10bis Price After Discount"
  },
  "icons": {
    "128": "icon.png"
  }
}