OfferUp Helper

Helps to manage boards and unlisted/removed items from you boards.

Co to jest OfferUp Helper?

OfferUp Helper to rozszerzenie Chrome opracowane przez Mikhail Kinchin, a jego główną funkcją jest „Helps to manage boards and unlisted/removed items from you boards.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia OfferUp Helper

Pobierz pliki rozszerzeń OfferUp Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension adds some functionality to OfferUp.com which the site does not provide. Current functionality:
* Now you can remove items from your boards ("saved" shopping list) without need to jump to item's page, which can even impossible in case item has been removed by publisher.
* Also using this extension you can remove whole board if you need so.                    

Podstawowe informacje o rozszerzeniu

Nazwa OfferUp Helper OfferUp Helper
ID pgllhmdhdoijdnjkegeecaidmpdgolok
Oficjalny URL https://chrome.google.com/webstore/detail/offerup-helper/pgllhmdhdoijdnjkegeecaidmpdgolok
Opis Helps to manage boards and unlisted/removed items from you boards.
Rozmiar pliku 41.79 KB
Liczba instalacji 134
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2021-01-08
Data Publikacji 2020-10-13
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Mikhail Kinchin
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OfferUp Helper",
    "version": "1.1.1",
    "description": "Helps to manage boards and unlisted\/removed items from you boards.",
    "manifest_version": 2,
    "permissions": [
        "webRequest"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/offerup.com\/board\/*",
                "https:\/\/offerup.com\/boards\/"
            ],
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/common.js",
                "js\/content.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo_16x16.png",
        "32": "images\/logo_32x32.png",
        "48": "images\/logo_48x48.png",
        "128": "images\/logo_128x128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}