Local Snip for Allegro Lokalnie

Automates bidding in Allegro Lokalnie

Local Snip for Allegro Lokalnie란 무엇입니까?

Local Snip for Allegro Lokalnie은(는) Piotr "Korba" Tomczyk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automates bidding in Allegro Lokalnie"입니다.

확장 프로그램 스크린샷

screenshot

Local Snip for Allegro Lokalnie 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Local Snip for Allegro Lokalnie Local Snip for Allegro Lokalnie
ID ffkacjnijgdjcikdobfecijfekffcekb
공식 URL https://chromewebstore.google.com/detail/local-snip-for-allegro-lo/ffkacjnijgdjcikdobfecijfekffcekb
설명 Automates bidding in Allegro Lokalnie
파일 크기 396 KB
설치 횟수 679
현재 버전 2.0.1
최근 업데이트 2024-02-09
출시 날짜 2021-07-31
평점 4.00/5 총 1 개의 평점
개발자 Piotr "Korba" Tomczyk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.snip.pl
개인정보 보호 정책 페이지 URL https://www.snip.pl/help/6
지원되는 언어 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\/"
    ]
}