Meerkat - Market Notes

Open source online marketplace assistant.

Co to jest Meerkat - Market Notes?

Meerkat - Market Notes to rozszerzenie Chrome opracowane przez milan.magyar, a jego główną funkcją jest „Open source online marketplace assistant.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Meerkat - Market Notes

Pobierz pliki rozszerzeń Meerkat - Market Notes 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

                        - Take notes for marketplace items
- Mark certain items with different colors
- Follow the property changes of items*

You can find the list of supported online marketplaces on the extension's website.

* the extension stores only those properties of items in your browser, which you actually saw                    

Podstawowe informacje o rozszerzeniu

Nazwa Meerkat - Market Notes Meerkat - Market Notes
ID bindhbmgpmgkhmicfapbiemdbbkglecg
Oficjalny URL https://chromewebstore.google.com/detail/meerkat-market-notes/bindhbmgpmgkhmicfapbiemdbbkglecg
Opis Open source online marketplace assistant.
Rozmiar pliku 61.35 KB
Liczba instalacji 35
Aktualna Wersja 0.0.14
Ostatnia Aktualizacja 2021-09-03
Data Publikacji 2020-11-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper milan.magyar
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://siloor.github.io/meerkat-extension/
Obsługiwane Języki en,hu
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "homepage_url": "https:\/\/siloor.github.io\/meerkat-extension\/",
    "default_locale": "en",
    "version": "0.0.14",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon.16x16.png",
        "48": "icons\/icon.48x48.png",
        "128": "icons\/icon.128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.32x32.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}