Auto eBay Feedback
Automatically leaves eBay feedback for all transactions
Auto eBay Feedback là gì?
Auto eBay Feedback là một tiện ích mở rộng Chrome được phát triển bởi https://milanisaweso.me, và tính năng chính của nó là "Automatically leaves eBay feedback for all transactions".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Auto eBay Feedback
Tải xuống các tệp mở rộng Auto eBay Feedback dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hhagpffmkdoppgkfdonjlidkjlljehob |
URL Chính Thức | https://chrome.google.com/webstore/detail/auto-ebay-feedback/hhagpffmkdoppgkfdonjlidkjlljehob |
Mô tả | Automatically leaves eBay feedback for all transactions |
Kích Thước Tệp | 35.43 KB |
Số Lần Cài Đặt | 310 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2018-09-22 |
Ngày Phát Hành | 2018-09-22 |
Đánh Giá | 4.57/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | https://milanisaweso.me |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/milan102/Auto-eBay-Feedback |
URL Trang Trợ Giúp | https://milanisaweso.me/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |