Auto eBay Feedback

Automatically leaves eBay feedback for all transactions

什么是Auto eBay Feedback?

Auto eBay Feedback是由https://milanisaweso.me开发的Chrome扩展程序,该扩展的主要功能是“Automatically leaves eBay feedback for all transactions”。

扩展截图

screenshot

下载Auto eBay Feedback扩展crx文件

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

扩展使用说明

                        Rather than waste valuable time manually leaving feedback for every eBay transaction, you can type your feedback once and have the comment applied to all of your transactions. Great for small and big sellers alike!

[v2.2] Fixed clicking of "Leave feedback" button
[v2.1] Added a 3 second wait before reloading feedback page
[v2.0] Updated for new eBay layout, which was effective late 2017
[v1.0.1] - Fixed my error of uploading Firefox version
[v1.0] - Initial Release                    

扩展基本信息

名称 Auto eBay Feedback Auto eBay Feedback
ID hhagpffmkdoppgkfdonjlidkjlljehob
官方URL https://chrome.google.com/webstore/detail/auto-ebay-feedback/hhagpffmkdoppgkfdonjlidkjlljehob
简介 Automatically leaves eBay feedback for all transactions
文件大小 35.43 KB
安装次数 310
当前版本 2.2
更新时间 2018-09-22
上架时间 2018-09-22
评分 4.57/5 共7次评分
开发者 https://milanisaweso.me
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/milan102/Auto-eBay-Feedback
帮助页面URL https://milanisaweso.me/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto eBay Feedback",
    "description": "Automatically leaves eBay feedback for all transactions",
    "homepage_url": "https:\/\/github.com\/milan102\/Auto-eBay-Feedback",
    "version": "2.2",
    "manifest_version": 2,
    "browser_action": {
        "browser_style": true,
        "default_title": "Auto eBay Feedback",
        "default_popup": "popup\/ebayfeedback.html",
        "default_icon": "icons\/ebay-32.png"
    },
    "icons": {
        "48": "icons\/ebay-48.png"
    },
    "permissions": [
        "*:\/\/*.ebay.com\/*",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.ebay.com\/fdbk\/leave_feedback",
                "*:\/\/feedback.ebay.com\/ws\/eBayISAPI.dll"
            ],
            "js": [
                "content_scripts\/current_leavefeedback.js"
            ]
        }
    ]
}