Local Snip for Allegro Lokalnie

Automates bidding in Allegro Lokalnie

Was ist Local Snip for Allegro Lokalnie?

Local Snip for Allegro Lokalnie ist eine Chrome-Erweiterung, die von Piotr "Korba" Tomczyk entwickelt wurde, und ihr Hauptmerkmal ist "Automates bidding in Allegro Lokalnie".

Erweiterungsscreenshots

screenshot

Local Snip for Allegro Lokalnie-Erweiterungs-CRX-Datei herunterladen

Laden Sie Local Snip for Allegro Lokalnie-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Local Snip is a tool for Allegro Lokalnie. It automates the bidding process and lets you track multiple auctions at a time.                    

Grundlegende Informationen zur Erweiterung

Name Local Snip for Allegro Lokalnie Local Snip for Allegro Lokalnie
ID ffkacjnijgdjcikdobfecijfekffcekb
Offizielle URL https://chromewebstore.google.com/detail/local-snip-for-allegro-lo/ffkacjnijgdjcikdobfecijfekffcekb
Beschreibung Automates bidding in Allegro Lokalnie
Dateigröße 396 KB
Installationsanzahl 679
Aktuelle Version 2.0.1
Letztes Update 2024-02-09
Veröffentlichungsdatum 2021-07-31
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Piotr "Korba" Tomczyk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.snip.pl
URL der Datenschutzrichtlinien-Seite https://www.snip.pl/help/6
Unterstützte Sprachen en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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\/"
    ]
}