Local Snip for Allegro Lokalnie

Automates bidding in Allegro Lokalnie

Cos'è Local Snip for Allegro Lokalnie?

Local Snip for Allegro Lokalnie è un'estensione di Chrome sviluppata da Piotr "Korba" Tomczyk, e la sua funzione principale è "Automates bidding in Allegro Lokalnie".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Local Snip for Allegro Lokalnie

Scarica i file di estensione Local Snip for Allegro Lokalnie in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Local Snip for Allegro Lokalnie Local Snip for Allegro Lokalnie
ID ffkacjnijgdjcikdobfecijfekffcekb
URL Ufficiale https://chromewebstore.google.com/detail/local-snip-for-allegro-lo/ffkacjnijgdjcikdobfecijfekffcekb
Descrizione Automates bidding in Allegro Lokalnie
Dimensione del File 396 KB
Conteggio Installazioni 679
Versione Corrente 2.0.1
Ultimo Aggiornamento 2024-02-09
Data di Pubblicazione 2021-07-31
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Piotr "Korba" Tomczyk
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.snip.pl
URL della Pagina della Politica sulla Privacy https://www.snip.pl/help/6
Lingue Supportate 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\/"
    ]
}