Pony Importer

Easy way to share ponies across Pony Town!

O que é Pony Importer?

Pony Importer é uma extensão do Chrome desenvolvida por Zxo Pink, e sua principal característica é "Easy way to share ponies across Pony Town!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Pony Importer

Baixe arquivos de extensão Pony Importer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Pony Importer Pony Importer
ID gldfiobnglilbkgbbahifeikpngcjmme
URL Oficial https://chromewebstore.google.com/detail/pony-importer/gldfiobnglilbkgbbahifeikpngcjmme
Descrição Easy way to share ponies across Pony Town!
Tamanho do Arquivo 9.48 KB
Contagem de Instalações 2,091
Versão Atual 1
Última Atualização 2021-09-22
Data de Publicação 2021-08-13
Classificação 2.00/5 Total de 6 Avaliações
Desenvolvedor Zxo Pink
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}