Local Snip for Allegro Lokalnie

Local Snip for Allegro Lokalnie

Automates bidding in Allegro Lokalnie

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_ext_long_name__",
  "short_name": "__MSG_ext_name__",
  "version": "2.0.1",
  "description": "__MSG_ext_description__",
  "author": "Piotr \"Korba\" Tomczyk",
  "homepage_url": "https://www.snip.pl/",
  "background": {
    "service_worker": "content/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.allegrolokalnie.pl/oferta/*"
      ],
      "js": [
        "content/oferta.js"
      ]
    },
    {
      "matches": [
        "*://*.allegro.pl/auth/oauth/authorize*"
      ],
      "js": [
        "content/authorize.js"
      ]
    }
  ],
  "options_ui": {
    "page": "content/options.html",
    "browser_style": false
  },
  "default_locale": "en",
  "icons": {
    "16": "img/sm16.png",
    "48": "img/sm48.png",
    "128": "img/sm128.png",
    "256": "img/sm.png"
  },
  "action": {
    "default_icon": {
      "16": "img/sm16.png",
      "48": "img/sm48.png",
      "128": "img/sm128.png",
      "256": "img/sm.png"
    },
    "default_popup": "content/popup.html",
    "default_title": "__MSG_ext_browser_action_title__"
  },
  "permissions": [
    "tabs",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://allegrolokalnie.pl/",
    "https://allegro.pl/"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}