Auto eBay Feedback

Automatically leaves eBay feedback for all transactions

Auto eBay Feedbackคืออะไร?

Auto eBay Feedback เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://milanisaweso.me และคุณลักษณะหลักของมันคือ "Automatically leaves eBay feedback for all transactions"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto eBay Feedback

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}