Amazon Country of origin Filter
Filters products based on country of origin!
Amazon Country of origin Filter क्या है?
Amazon Country of origin Filter csdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filters products based on country of origin!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Amazon Country of origin Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Updates: A. Default Configuration: 1. The Plugin is enabled by default. 2. Default Setting: Only Made in India Products are shown with tags. From other countries, the products get removed. B. Added Option to reset settings to default. This is shown as a link below 'Filter' button in the Plugin UI. Description: This plugin will allow you to filter products on Amazon listing & search pages based on country of origin. The country information will be added and if desired, the products not matching the category will be removed from the screen. Motivation: Vocal for Local. 😊. Ps: I don't collect or take any data. All the processing happens in the browser. I request you to contact in my email [email protected] in case you need any 1-1 assistance in using the plugin. Would be happy to help. But Please note that I am a solo developer here so responses might get delayed. Namaste 🙏
एक्सटेंशन की मूल जानकारी
नाम | Amazon Country of origin Filter |
ID | ckefnkgcodnhjboblidglaplcldaiojj |
आधिकारिक URL | https://chromewebstore.google.com/detail/amazon-country-of-origin/ckefnkgcodnhjboblidglaplcldaiojj |
विवरण | Filters products based on country of origin! |
फ़ाइल का आकार | 521 KB |
स्थापना संख्या | 104 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2024-03-03 |
प्रकाशन तिथि | 2023-09-21 |
रेटिंग | 3.00/5 कुल 8 रेटिंग्स |
डेवलपर | csdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://praveenranjan.com/portfolio#contact |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Filters products based on country of origin!", "version": "1.0.1", "manifest_version": 3, "name": "Amazon Country of origin Filter", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "icons": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.in\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "permissions": [ "storage" ] } |