Pony Importer

Easy way to share ponies across Pony Town!

什么是Pony Importer?

Pony Importer是由Zxo Pink开发的Chrome扩展程序,该扩展的主要功能是“Easy way to share ponies across Pony Town!”。

扩展截图

screenshot
screenshot

下载Pony Importer扩展crx文件

下载Pony Importer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}