Auto eBay Feedback

Automatically leaves eBay feedback for all transactions

Auto eBay Feedback क्या है?

Auto eBay Feedback https://milanisaweso.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically leaves eBay feedback for all transactions"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto eBay Feedback एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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