Pony Importer

Easy way to share ponies across Pony Town!

ما هو Pony Importer؟

Pony Importer هو إضافة Chrome تم تطويرها بواسطة Zxo Pink، والميزة الرئيسية لها هي "Easy way to share ponies across Pony Town!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Pony Importer

قم بتنزيل ملفات الامتداد Pony Importer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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!                    

معلومات أساسية عن التمديد

الاسم Pony Importer Pony Importer
ID gldfiobnglilbkgbbahifeikpngcjmme
عنوان URL الرسمي https://chromewebstore.google.com/detail/pony-importer/gldfiobnglilbkgbbahifeikpngcjmme
الوصف Easy way to share ponies across Pony Town!
حجم الملف 9.48 KB
عدد التثبيتات 2,091
النسخة الحالية 1
آخر تحديث 2021-09-22
تاريخ النشر 2021-08-13
تقييم 2.00/5 مجموع تقييمات 6
المطور Zxo Pink
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}