Local Snip for Allegro Lokalnie
Automates bidding in Allegro Lokalnie
Vad är Local Snip for Allegro Lokalnie?
Local Snip for Allegro Lokalnie är en Chrome-tillägg utvecklad av Piotr "Korba" Tomczyk, och dess huvudfunktion är "Automates bidding in Allegro Lokalnie".
Tilläggsskärmbilder
Ladda ner Local Snip for Allegro Lokalnie-förlängningens CRX-fil
Ladda ner Local Snip for Allegro Lokalnie-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Local Snip is a tool for Allegro Lokalnie. It automates the bidding process and lets you track multiple auctions at a time. Grundläggande Information om Tillägg
| Namn | |
| ID | ffkacjnijgdjcikdobfecijfekffcekb |
| Officiell webbadress | https://chromewebstore.google.com/detail/local-snip-for-allegro-lo/ffkacjnijgdjcikdobfecijfekffcekb |
| Beskrivning | Automates bidding in Allegro Lokalnie |
| Filstorlek | 396 KB |
| Antal Installationer | 679 |
| Aktuell Version | 2.0.1 |
| Senast Uppdaterad | 2024-02-09 |
| Publiceringsdatum | 2021-07-31 |
| Betyg | 4.00/5 Totalt 1 Betyg |
| Utvecklare | Piotr "Korba" Tomczyk |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.snip.pl |
| URL till Sekretesspolicy Sidan | https://www.snip.pl/help/6 |
| Stödda Språk | 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\/"
]
} | |