ShopSuey: Get rid of ads on Amazon and Ebay

Chrome extension that gets rid of ads + sponsored products on Amazon and eBay, and improves the layout and flow of the sites.

ShopSuey: Get rid of ads on Amazon and Ebay क्या है?

ShopSuey: Get rid of ads on Amazon and Ebay ShopSuey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that gets rid of ads + sponsored products on Amazon and eBay, and improves the layout and flow of the sites."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में ShopSuey: Get rid of ads on Amazon and Ebay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        ShopSuey is a browser extension that hides sponsored products, reformats the page, and makes the overall online shopping experience way better.

Currently, the extension only supports Amazon.com and Ebay.com but we’re working on cleaning up several other online retailers, including BestBuy, Target, and Walmart.

=====

Release notes v1.2.0:
- Improved support on Amazon + updated affiliate code

=====

Frequently Asked Questions:

Does this extension record any of my data? 
Absolutely not. Check the permissions when you install the extension, you never grant any permissions like that. In fact, there are no external calls at all.

Does this cost any money to use? 
Nope, ShopSuey is completely free to download and use.

How do you make money then? 
When you install this extension, we append our affiliate code to the products displayed on the page. This does not impact your shopping experience. If you complete a purchase, we get a small fraction of the total sale on some products. There is no cost to you and all of this happens behind-the-scenes. You can also disable this feature from the menu if you’d like.

Isn’t this just a glorified userscript? 
Yes, it is.

Is the code open source? 
Not really. When you download the extension, you get minified version of the full codebase. But it’s not a public repo on Github or elsewhere and lacks documentation. I may get to this in the near future if people are interested.                    

एक्सटेंशन की मूल जानकारी

नाम ShopSuey: Get rid of ads on Amazon and Ebay ShopSuey: Get rid of ads on Amazon and Ebay
ID epkdmppogcepckfgkbcphhagiiieafjk
आधिकारिक URL https://chromewebstore.google.com/detail/shopsuey-get-rid-of-ads-o/epkdmppogcepckfgkbcphhagiiieafjk
विवरण Chrome extension that gets rid of ads + sponsored products on Amazon and eBay, and improves the layout and flow of the sites.
फ़ाइल का आकार 221 KB
स्थापना संख्या 303
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2021-01-02
प्रकाशन तिथि 2019-07-30
रेटिंग 3.00/5 कुल 10 रेटिंग्स
डेवलपर ShopSuey
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mdolon.com/projects/shopsuey
सहायता पृष्ठ URL https://mdolon.com/projects/shopsuey
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShopSuey: Get rid of ads on Amazon and Ebay",
    "short_name": "shopsuey",
    "version": "1.2.0",
    "description": "Chrome extension that gets rid of ads + sponsored products on Amazon and eBay, and improves the layout and flow of the sites.",
    "author": "Monji Dolon",
    "permissions": [
        "*:\/\/*.amazon.com\/*",
        "*:\/\/*.amazon.co.uk\/*",
        "*:\/\/*.amazon.ca\/*",
        "*:\/\/*.amazon.fr\/*",
        "*:\/\/*.amazon.de\/*",
        "*:\/\/*.amazon.es\/*",
        "*:\/\/*.amazon.it\/*",
        "*:\/\/*.amazon.com.au\/*",
        "*:\/\/*.amazon.co.jp\/*",
        "*:\/\/*.ebay.com\/*",
        "*:\/\/*.ebay.co.uk\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.ebay.com\/*",
                "*:\/\/*.ebay.co.uk\/*"
            ],
            "js": [
                "contentscript.bundle.js"
            ],
            "css": [
                "shopsuey.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "images\/shopsuey-16.png",
        "48": "images\/shopsuey-48.png",
        "128": "images\/shopsuey-128.png"
    }
}