BL EPlatforma

BL EPlatforma

Rozszerzenie do automatycznego uzupełniania danych przy wystawianiu aukcji oraz do kontrolowania cen aukcji Allegro.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BL EPlatforma",
  "short_name": "BL EPlatforma",
  "description": "Rozszerzenie do automatycznego uzupełniania danych przy wystawianiu aukcji oraz do kontrolowania cen aukcji Allegro.",
  "version": "1.8.25",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "BL EPlatforma",
    "default_popup": "popup/popup.html",
    "default_icon": {
      "48": "icons/icon_48.png",
      "128": "icons/icon_128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.baselinker.com/allegro_sell_form.php?*"
      ],
      "js": [
        "modules/allegro-sell-form/allegro-sell-form.js"
      ],
      "css": [
        "modules/allegro-sell-form/allegro-sell-form.css"
      ]
    },
    {
      "matches": [
        "https://*.baselinker.com/allegro_auctions.php*"
      ],
      "js": [
        "modules/allegro-auctions/allegro-auctions.js"
      ],
      "css": [
        "modules/allegro-auctions/allegro-auctions.css"
      ]
    }
  ],
  "permissions": [
    "https://github.com/*",
    "https://api.bl.eplatforma.pro/*",
    "http://api.eplatforma.test/*",
    "https://localhost:8000/*",
    "https://*.baselinker.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "icons/icon_48.png"
  ]
}