Waxpost (Weasyl Crossposter)
This extension adds a 'Crosspost to Weasyl' button to various art sites.
什么是Waxpost (Weasyl Crossposter)?
Waxpost (Weasyl Crossposter)是由https://www.weasyl.com开发的Chrome扩展程序,该扩展的主要功能是“This extension adds a 'Crosspost to Weasyl' button to various art sites.”。
扩展截图
下载Waxpost (Weasyl Crossposter)扩展crx文件
下载Waxpost (Weasyl Crossposter)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        For artists who wish to crosspost their visual art from other art sites to the art site Weasyl, Waxpost provides a simple button to create a new submission from an existing submission.
Currently supported are the art sites deviantArt, Inkbunny, SoFurry, and FurAffinity, as well as the image sharing site imgur.
Waxpost will, when viewing a submission on one of the aforementioned sites, add a Weasyl beret icon to the URL bar. Clicking this icon will open up the "new visual submission" page on Weasyl, prepopulated with as much information as Waxpost can gather.
Note: imgur support requires viewing the image itself instead of a gallery page. The URL must start with http://i.imgur.com/ or https://i.imgur.com/.
At the moment, only visual submissions are supported. Submitting any other type will result in undefined behavior.                     扩展基本信息
| 名称 |   |  
| ID | boddplgmdhddfmchbifhpdpekfdaenjc | 
| 官方URL | https://chromewebstore.google.com/detail/waxpost-weasyl-crossposte/boddplgmdhddfmchbifhpdpekfdaenjc | 
| 简介 | This extension adds a 'Crosspost to Weasyl' button to various art sites. | 
| 文件大小 | 149 KB | 
| 安装次数 | 615 | 
| 当前版本 | 0.3.2 | 
| 更新时间 | 2016-05-23 | 
| 上架时间 | 2016-05-23 | 
| 评分 | 4.12/5 共42次评分 | 
| 开发者 | https://www.weasyl.com | 
| 付费类型 | free | 
| 扩展官网 | https://www.weasyl.com/ | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Waxpost (Weasyl Crossposter)",
    "short_name": "Waxpost",
    "description": "This extension adds a 'Crosspost to Weasyl' button to various art sites.",
    "version": "0.3.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.0.3.min.js"
            ],
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.deviantart.com\/art\/*",
                "http:\/\/*.deviantart.com\/art\/*",
                "https:\/\/www.sofurry.com\/view\/*",
                "http:\/\/www.sofurry.com\/view\/*",
                "https:\/\/*.furaffinity.net\/view\/*",
                "http:\/\/*.furaffinity.net\/view\/*",
                "https:\/\/inkbunny.net\/*",
                "https:\/\/i.imgur.com\/*",
                "http:\/\/i.imgur.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "options_page": "options.html",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-48.png"
    },
    "page_action": {
        "default_icon": "icon-38.png",
        "default_title": "Crosspost to Weasyl"
    },
    "permissions": [
        "http:\/\/*.deviantart.com\/art\/*",
        "https:\/\/*.deviantart.com\/art\/*",
        "https:\/\/www.sofurry.com\/view\/*",
        "http:\/\/www.sofurry.com\/view\/*",
        "http:\/\/*.furaffinity.net\/view\/*",
        "https:\/\/*.furaffinity.net\/view\/*",
        "https:\/\/inkbunny.net\/submissionview.php",
        "https:\/\/i.imgur.com\/*",
        "http:\/\/i.imgur.com\/*",
        "tabs"
    ]
}  |  |