חיפוש מנות לאתר תן ביס

חיפוש מנות לאתר תן ביס

חיפוש מנוות באתר תן ביס המאפשר מציאת מנות לפי שם המנה והמרכיבים אותה

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "חיפוש מנות לאתר תן ביס",
  "short_name": "חיפוש תןביס",
  "description": "חיפוש מנוות באתר תן ביס המאפשר מציאת מנות לפי שם המנה והמרכיבים אותה",
  "version": "1.4.5",
  "browser_action": {
    "default_icon": "/images/logo.png",
    "default_title": "Food Search For 10bis",
    "default_popup": "/popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "/externalScripts/jquery-3.2.1.min.js",
        "/contentScripts/main.js"
      ],
      "matches": [
        "http://www.10bis.co.il/*",
        "http://10bis.co.il/*",
        "https://www.10bis.co.il/*",
        "https://10bis.co.il/*"
      ],
      "run_at": "document_start",
      "css": []
    }
  ],
  "icons": {
    "16": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "/images/loader.gif",
    "/contentScripts/pages/initPanel.html",
    "/contentScripts/pages/searchPanel.html"
  ],
  "background": {
    "scripts": [
      "/externalScripts/jquery-3.2.1.min.js",
      "/externalScripts/async.js",
      "/background/analytics.js",
      "/background/restDB.js",
      "/background/messaging.js",
      "/background/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}