יואל גבע

יואל גבע

הצגת ערכים מילוניים

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "יואל גבע",
  "version": "3.1",
  "manifest_version": 2,
  "description": "הצגת ערכים מילוניים",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "8": "images/8x8_y.png",
    "32": "images/32x32_y.png",
    "64": "images/64x64_y.png",
    "128": "images/128x128_y.png",
    "256": "images/256x256_y.png",
    "512": "images/512x512_y.png"
  },
  "browser_action": {
    "default_popup": "html/options.html",
    "default_icon": {
      "8": "images/8x8_g.png",
      "32": "images/32x32_g.png",
      "64": "images/64x64_g.png",
      "128": "images/128x128_g.png",
      "256": "images/256x256_g.png",
      "512": "images/512x512_g.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "scripts/eventpage.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "scripts/script.js",
    "css/style.css",
    "images/icon_small_logo.png",
    "images/icon_volume.png"
  ]
}