Pony Importer

Easy way to share ponies across Pony Town!

Vad är Pony Importer?

Pony Importer är en Chrome-tillägg utvecklad av Zxo Pink, och dess huvudfunktion är "Easy way to share ponies across Pony Town!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Pony Importer-förlängningens CRX-fil

Ladda ner Pony Importer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Pony Importer Pony Importer
ID gldfiobnglilbkgbbahifeikpngcjmme
Officiell webbadress https://chromewebstore.google.com/detail/pony-importer/gldfiobnglilbkgbbahifeikpngcjmme
Beskrivning Easy way to share ponies across Pony Town!
Filstorlek 9.48 KB
Antal Installationer 2,091
Aktuell Version 1
Senast Uppdaterad 2021-09-22
Publiceringsdatum 2021-08-13
Betyg 2.00/5 Totalt 6 Betyg
Utvecklare Zxo Pink
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}