plugilo

plugilo

plugilo optimizes your bookmarks and guides you through the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "plugilo",
  "manifest_version": 3,
  "name": "plugilo",
  "description": "plugilo optimizes your bookmarks and guides you through the web",
  "version": "3.4.8",
  "action": {
    "default_icon": "images/icon-16.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "js/backgroundPage.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "exclude_matches": [
        "*://*.plugilo.com/*",
        "*://*.plugilo.de/*"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentScriptSidebarChecker.js"
      ],
      "exclude_matches": [
        "*://*.plugilo.com/*",
        "*://*.plugilo.de/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png",
    "256": "images/icon-256.png",
    "512": "images/icon-512.png",
    "1024": "images/icon-1024.png"
  },
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo_plugilo_black.svg",
        "frame.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}