eBay™ Negative & Neutral Feedback Viewer

With one click you can view a sellers negative & neutral feedback without leaving the eBay item details page.

eBay™ Negative & Neutral Feedback Viewerคืออะไร?

eBay™ Negative & Neutral Feedback Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://lastdropofink.co.uk และคุณลักษณะหลักของมันคือ "With one click you can view a sellers negative & neutral feedback without leaving the eBay item details page."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย eBay™ Negative & Neutral Feedback Viewer

ดาวน์โหลดไฟล์ส่วนขยาย eBay™ Negative & Neutral Feedback Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Just like you, I spend half my time checking a sellers feedback on eBay before making a purchase, thats why created this extension. We can now see the sellers feedback WITHOUT leaving the page and if that item is not the right one for us, we have options to find a different one on eBay instead.

ALL the major eBay sites are supported, US, UK, DE, CA, FR, Etc...  

* Your Feedback
Any comments or suggestions welcomed. Email the developer directly via the email address to the right.

* Version History 
V1.7
- Port closed message resolved
- Minor tweaks

V1.3
- Background performance greatly improved by loading feedback/items only when the button is clicked
- Now works with the new eBay V2 pages and for the new eBay 'product' pages too
- Minor bugs, fixed

V1.0 
- First release. 

* Known Bugs
- Firstly thank you for the feedback!

* This app is not developed by eBay Inc.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ eBay™ Negative & Neutral Feedback Viewer eBay™ Negative & Neutral Feedback Viewer
ID lidpdcfnpdicknaplfjlaafebmdajbbg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/lidpdcfnpdicknaplfjlaafebmdajbbg
คำอธิบาย With one click you can view a sellers negative & neutral feedback without leaving the eBay item details page.
ขนาดไฟล์ 28.2 KB
จำนวนการติดตั้ง 68
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2020-04-23
วันที่เผยแพร่ 2020-04-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา http://lastdropofink.co.uk
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://lastdropofink.co.uk/privacy-policy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eBay\u2122 Negative & Neutral Feedback Viewer",
    "short_name": "eBay Neg Viewer",
    "version": "1.7",
    "description": "With one click you can view a sellers negative & neutral feedback without leaving the eBay item details page.",
    "author": "Matthew Ogborne [email protected]",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.ebay.com\/*",
                "*:\/\/*.ebay.co.uk\/*",
                "*:\/\/*.ebay.com.au\/*",
                "*:\/\/*.ebay.ca\/*",
                "*:\/\/*.ebay.ch\/*",
                "*:\/\/*.ebay.de\/*",
                "*:\/\/*.ebay.fr\/*",
                "*:\/\/*.ebay.it\/*",
                "*:\/\/*.ebay.es\/*",
                "*:\/\/*.ebay.ca\/*",
                "*:\/\/*.ebay.in\/*",
                "*:\/\/*.ebay.be\/*",
                "*:\/\/*.cafr.ebay.ca\/*",
                "*:\/\/*.ebay.com.hk\/*",
                "*:\/\/*.ebay.com.my\/*",
                "*:\/\/*.ebay.ie\/*",
                "*:\/\/*.ebay.nl\/*",
                "*:\/\/*.ebay.ph\/*",
                "*:\/\/*.ebay.com.sg\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "web_accessible_resources": [
        "images\/*.png",
        "scripts\/page-script.js"
    ]
}