Pony Importer

Easy way to share ponies across Pony Town!

Co to jest Pony Importer?

Pony Importer to rozszerzenie Chrome opracowane przez Zxo Pink, a jego główną funkcją jest „Easy way to share ponies across Pony Town!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Pony Importer

Pobierz pliki rozszerzeń Pony Importer 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

                        An easy way to share ponies across Pony Town! thanks to this plugin you can simply copy your pony's data and share it with a friend, or the whole town! and they can use the data to save your pony design on their account, using only copy and paste!                    

Podstawowe informacje o rozszerzeniu

Nazwa Pony Importer Pony Importer
ID gldfiobnglilbkgbbahifeikpngcjmme
Oficjalny URL https://chromewebstore.google.com/detail/pony-importer/gldfiobnglilbkgbbahifeikpngcjmme
Opis Easy way to share ponies across Pony Town!
Rozmiar pliku 9.48 KB
Liczba instalacji 2,091
Aktualna Wersja 1
Ostatnia Aktualizacja 2021-09-22
Data Publikacji 2021-08-13
Ocena 2.00/5 Łącznie 6 Oceny
Deweloper Zxo Pink
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": "Pony Importer",
    "description": "Easy way to share ponies across Pony Town!",
    "version": "1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pony.town\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "32": "images\/logo32.png",
        "64": "images\/logo64.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Pony importer"
    },
    "background": {
        "scripts": [
            "bgp.js"
        ],
        "persistent": true
    },
    "permissions": [
        "https:\/\/pony.town\/*",
        "webRequest"
    ]
}