Plente

Plente

Wtyczka dla użytkowników plente.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Plente",
  "short_name": "plente",
  "version": "3.1.0",
  "description": "Wtyczka dla użytkowników plente.com",
  "browser_action": {
    "default_title": "Plente",
    "default_popup": "pages/popup.html",
    "default_icon": "assets/logo.png"
  },
  "author": "Plente",
  "background": {
    "page": "pages/background.html"
  },
  "homepage_url": "https://plente.com/",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "pages/index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "assets/*",
    "icons/*"
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "file:///*",
    "storage"
  ],
  "minimum_chrome_version": "60",
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo128.png"
  }
}