Pomocnik Allegro

Pomocnik Allegro

Filtrowanie ofert, wyszukiwanie niepromowanych, usuwanie duplikatów na Allegro

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Filtrowanie ofert, wyszukiwanie niepromowanych, usuwanie duplikatów na Allegro",
  "version": "1.5.5",
  "name": "Pomocnik Allegro",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "contextMenus",
    "scripting",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "https://allegro.pl/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://allegro.pl/listing*",
        "https://allegro.pl/kategoria/*",
        "https://allegro.pl/uzytkownik/*",
        "https://allegro.pl/produkt/*"
      ],
      "run_at": "document_idle",
      "js": [
        "scrollToElem.bundle.js"
      ]
    },
    {
      "matches": [
        "https://allegro.pl/listing*",
        "https://allegro.pl/kategoria/*",
        "https://allegro.pl/uzytkownik/*",
        "https://allegro.pl/produkt/*"
      ],
      "run_at": "document_end",
      "js": [
        "filter.bundle.js"
      ]
    },
    {
      "matches": [
        "https://allegro.pl/oferta*"
      ],
      "run_at": "document_idle",
      "js": [
        "offerPage.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/icons/*.png",
        "public/**/*.png",
        "public/**/*.jpg",
        "public/*.woff2"
      ],
      "matches": [
        "*://*.allegro.pl/*"
      ]
    }
  ],
  "action": {
    "default_title": "Pomocnik Allegro",
    "default_icon": {
      "16": "public/images/regular_16.png",
      "48": "public/images/regular_48.png"
    }
  },
  "icons": {
    "16": "public/images/regular_16.png",
    "48": "public/images/regular_48.png",
    "128": "public/images/regular_128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "manifest_version": 3
}